Update a payment schedule item

Updates a payment schedule item by ID.

Note:

  • The Payment Schedules feature is in the Early Adopter phase. We are actively soliciting feedback from a small set of early adopters before releasing it as generally available. To manag](https://knowledgecenter.zuora.com/Zuora_Payments/Payments_Settings/Manage_Features).
  • This operation is only available if you have Invoice Settlement enabled.
  • To link or unlink multiple payments with the item, specify the linkPayments and unlinkPayments field in the request body.
  • The maximum number of payments that are allowed to be linked to a payment schedule item is 10.
  • When unlinking and linking payments with the payment schedule item in one request, Zuora will first unlink the linked payments, and then link new payments to the item.
Request
path Parameters
item-id
required
string

The unique ID of a payment schedule item.

header Parameters
Accept-Encoding
string

Include the Accept-Encoding: gzip header to compress responses as a gzipped file. It can significantly reduce the bandwidth required for a response.

If specified, Zuora automatically compresses responses that contain over 1000 bytes of data, and the response contains a Content-Encoding header with the compression algorithm so that your client can decompress it.

Content-Encoding
string

Include the Content-Encoding: gzip header to compress a request. With this header specified, you should upload a gzipped file for the request payload instead of sending the JSON payload.

Authorization
string

The value is in the Bearer {token} format where {token} is a valid OAuth token generated by calling Create an OAuth token.

Zuora-Track-Id
string <= 64 characters

A custom identifier for tracing the API call. If you set a value for this header, Zuora returns the same value in the response headers. This header enables you to associate your system process identifiers with Zuora API calls, to assist with troubleshooting in the event of an issue.

The value of this field must use the US-ASCII character set and must not include any of the following characters: colon (:), semicolon (;), double quote ("), and quote (').

Zuora-Entity-Ids
string

An entity ID. If you have Zuora Multi-entity enabled and the OAuth token is valid for more than one entity, you must use this header to specify which entity to perform the operation in. If the OAuth token is only valid for a single entity, or you do not have Zuora Multi-entity enabled, you should not set this header.

Zuora-Org-Ids
string

Comma separated IDs. If you have Zuora Multi-Org enabled, you can use this header to specify which orgs to perform the operation in. If you do not have Zuora Multi-Org enabled, you should not set this header.

The IDs must be a sub-set of the user's accessible orgs. If you specify an org that the user does not have access to, the operation fails.

If the header is not set, the operation is performed in scope of the user's accessible orgs.

zuora-version
string

The minor API version.

For a list of available minor versions, see API upgrades

Request Body schema: application/json
required
amount
number <decimal>

The amount of the payment.

currency
string

The currency of the payment.

description
string

The description of the payment schedule item.

linkPayments
Array of strings

Container for payments linked to the payment schedule item.

paymentGatewayId
string

ID of the payment gateway of the payment schedule item.

paymentMethodId
string

ID of the payment method of the payment schedule item.

Array of objects (paymentOption)

Container for the paymentOption items, which describe the transactional level rules for processing payments. Currently, only the Gateway Options type is supported.

Here is an example:

"paymentOption": [
  {
    "type": "GatewayOptions",
    "detail": {
      "SecCode":"WEB"
    }
  }
]

paymentOption of the payment schedule takes precedence over paymentOption of the payment schedule item.

runHour
integer

At which hour of the day in the tenant’s timezone this payment will be collected. If the payment runHour and scheduledDate are backdated, the system will collect the payment when the next runHour occurs.

scheduledDate
string <date>

The scheduled date when the payment is processed.

unlinkPayments
Array of strings

Container for payments to be unlinked from the payment schedule item.

property name*
additional property
any

Custom fields of the Payment Schedule Item object. The name of each custom field has the form customField__c. Custom field names are case-sensitive. See Manage Custom Fields for more information.

Responses
200
500

Internal Server Error

4XX

Request Errors

put/v1/payment-schedule-items/{item-id}
Request samples
application/json
{
  • "amount": 30,
  • "currency": "USD",
  • "description": "",
  • "linkPayments": [
    ],
  • "paymentGatewayId": "8a90a2fd807499580180781775c452a8",
  • "paymentMethodId": "8a90a2fd8074995801807817ebed52aa",
  • "paymentOption": [
    ],
  • "runHour": 0,
  • "scheduledDate": "2019-08-24",
  • "unlinkPayments": [
    ],
  • "property1": null,
  • "property2": null
}
Response samples
application/json
{
  • "amount": 30,
  • "billingDocument": {
    },
  • "cancellationReason": null,
  • "createdById": "8a90e082802185b901802199e15902d1",
  • "createdDate": "2022-07-22 00:43:42",
  • "currency": "USD",
  • "description": "",
  • "errorMessage": null,
  • "id": "8a90857b822459cd018224dcb9ec13bf",
  • "number": 1,
  • "paymentGatewayId": "8a90a2fd807499580180781775c452a8",
  • "paymentId": null,
  • "paymentMethodId": "8a90a2fd8074995801807817ebed52aa",
  • "paymentScheduleId": "8a90857b822459cd018224dcb9eb13be",
  • "paymentScheduleNumber": "PS-00000007",
  • "runHour": 23,
  • "scheduledDate": "2022-07-31",
  • "standalone": false,
  • "status": "Pending",
  • "success": true,
  • "updatedById": "8a90e082802185b901802199e15902d1",
  • "updatedDate": "2022-07-22 00:43:42"
}