Skip to main content

execute()

Zuora
  • 日本語のコンテンツは機械翻訳されており、補助的な参照を目的としています。機械翻訳の精度は保証できません。英語版が正となります。また、現時点では検索機能は日本語での検索をサポートしていません。翻訳に関するフィードバックについては、docs@zuora.comに送信してください。

  • US Data Center Customers: The SOAP API is no longer under active development. The legacy SOAP calls still function, but are now also available in REST.

    EU Data Center Customers: The SOAP API is not available. Please use the REST API.

    APAC Data Center Customers: The SOAP API is not available. Please use the REST API.

    Going forward, new features will only be available through the REST API. We strongly recommend that all integrations are done using the REST API.

    You can find the REST API documentation at https://www.zuora.com/developer/.

execute()

Use the execute() call to execute a process to split an invoice into multiple invoices. The original invoice must be in draft status. The resulting invoices are called split invoices. This SOAP API reference includes syntax, call wrappers and container descriptions, requirements, and examples.

Usage

This feature is in Limited Availability. If you want to have access to the feature, submit a request at Zuora Global Support

To split a draft invoice into multiple split invoices:

  1. Use the create() call to create a separate InvoiceSplitItem object for each split invoice that you want to create from the original draft invoice.
  2. Use the create() call to create a single InvoiceSplit object to collect all of the InvoiceSplitItem objects.
  3. Use the execute() call to split the draft invoice into multiple split invoices.

You need to create InvoiceSplitItem objects and an InvoiceSplit object before you can use the execute() call. 

  • Supported objects: InvoiceSplit
  • Version availability: WSDL 43.0+
  • Asynchronous process: yes

Syntax and Arguments

The execute() call uses the following items:

Request: execute

Use all of the following fields for every execute() request:

  • type
    • Description: Specifies the type of executed item. As of WSDL 43.0, invoice splits are the only supported type.
    • Type: string
    • Version notes: WSDL 43.0+
    • Values: invoicesplit
  • synchronous
    • Description: Indicates if the call is synchronous or asynchronous. As of WSDL 43.0, this call must be asynchronous.
    • Type: boolean
    • Version notes: WSDL 43.0+
    • Valuesfalse
  • ids
    • Description: The ID of the object. As of WSDL 43.0, InvoiceSplit objects are the only supported objects.
    • Type: string
    • Version notes: WSDL 43.0+
    • Values: a valid InvoiceSplit object ID

Example request

01<soapenv:Envelope
04    xmlns:ns1="http://api.zuora.com/"
05    xmlns:ns2="http://object.api.zuora.com/">
06    <soapenv:Header>
07        <ns1:SessionHeader>
08            <ns1:session>XXX</ns1:session>
09        </ns1:SessionHeader>
10    </soapenv:Header>
11    <soapenv:Body>
12        <ns1:execute>
13            <ns1:type>invoicesplit</ns1:type>
14            <ns1:synchronous>false</ns1:synchronous>
15            <ns1:ids>2c90803e386cc2bf01386d0865910025</ns1:ids>
16        </ns1:execute>
17    </soapenv:Body>
18</soapenv:Envelope>

Response: ExecuteResult

The ExecuteResult response has the following fields:

  • Errors
    • InvalidTypeFault
      An invalid type, unknown type, or a type not supported in the API version was specified.
    • UnexpectedErrorFault
      There was an unexpected problem with the call. No further details are available.
  • Id
    • The ID of the object in the call. The value is the same as the value you provide in the ids field for the request.
  • Success
    • Boolean field that confirms that the call succeeded.