Note: The Subscribe and Amend features are approaching end of support on February 16, 2026. For more information, please refer to the Product and Feature End of Support page.
The REST API reference describes how to create a new subscription in preview mode. This call does not require a valid customer account. It can be used to show potential new customers a preview of a subscription with complete details and charges before creating an account, or to let existing customers preview a subscription with all charges before committing.
Notes:
The response of the Preview Subscription call is based on the REST API minor version you set in the request header. The response structure might be different if you use different minor version numbers.
If you have the Invoice Settlement feature enabled, we recommend that you set the zuora-version
parameter to 207.0
or later available versions. Otherwise, an error is returned.
Default values for customerAcceptanceDate and serviceActivationDate are set as follows.
serviceActivationDate(SA) specified | serviceActivationDate (SA) NOT specified | |
---|---|---|
customerAcceptanceDate (CA) specified | SA uses value in the request call; CA uses value in the request call | CA uses value in the request call;SA uses CE as default |
customerAcceptanceDate (CA) NOT specified | SA uses value in the request call; CA uses SA as default | SA and CA use CE as default |
Idempotency-Key | string <= 255 characters Specify a unique idempotency key if you want to perform an idempotent POST or PATCH request. Do not use this header in other request types. With this header specified, the Zuora server can identify subsequent retries of the same request using this value, which prevents the same operation from being performed multiple times by accident. |
Accept-Encoding | string Include the If specified, Zuora automatically compresses responses that contain over 1000 bytes of data, and the response contains a |
Content-Encoding | string Include the |
Authorization | string The value is in the |
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 ( |
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. |
accountKey | string Customer account number or ID. You must specify the account information either in this field or in the
|
contractEffectiveDate required | string <date> Effective contract date for this subscription, as yyyy-mm-dd. |
customerAcceptanceDate | string <date> The date on which the services or products within a subscription have been accepted by the customer, as yyyy-mm-dd. Default value is dependent on the value of other fields. See Notes section for more details. |
documentDate | string <date> The date of the billing document, in
|
includeExistingDraftDocItems | boolean Specifies whether to include draft invoice items in subscription previews. Values are:
|
initialTerm | integer <int64> Duration of the first term of the subscription, in whole months. If |
initialTermPeriodType | string The period type of the initial term. Supported values are:
The default period type is |
invoiceOwnerAccountKey | string Invoice owner account number or ID. Note: This feature is in Limited Availability. If you wish to have access to the feature, submit a request at Zuora Global Support. |
notes | string String of up to 500 characters. |
object (previewAccountInfo) A container for providing a customer account information if you do not have an existing customer account. This customer account information is only used for subscription preview. You must specify the account information either in this field or in the
| |
previewType | string Default: "LegalDoc" The type of preview you will receive. Note: If your API minor version is earlier than
|
serviceActivationDate | string <date> The date on which the services or products within a subscription have been activated and access has been provided to the customer, as yyyy-mm-dd. Default value is dependent on the value of other fields. See Notes section for more details. |
required | Array of objects (subscribeToRatePlans) Container for one or more rate plans for this subscription. |
targetDate | string <date> Date through which to calculate charges if an invoice is generated, as yyyy-mm-dd. Default is current date. Note: This field is only available if you are on the latest Zuora API minor version, or you set the |
termStartDate | string <date> The date on which the subscription term begins, as yyyy-mm-dd. If this is a renewal subscription, this date is different from the subscription start date. |
termType required | string Possible values are: |
property name* additional property | any Custom fields of the Subscription object. The name of each custom field has the form |
Internal Server Error
Request Errors
{- "accountKey": "8ad09be48db5aba7018db604776d4854",
- "contractEffectiveDate": "2024-07-01",
- "termType": "TERMED",
- "initialTerm": 12,
- "subscribeToRatePlans": [
- {
- "productRatePlanId": "8ad081dd9096ef9501909b40bb4e74a4"
}
]
}
{- "success": true,
- "contractedMrr": 14.99,
- "totalContractedValue": 179.88,
- "amount": 14.99,
- "amountWithoutTax": 14.99,
- "taxAmount": 0,
- "invoiceTargetDate": "2024-07-11",
- "documentDate": "2024-07-11",
- "invoiceItems": [
- {
- "serviceStartDate": "2024-07-01",
- "serviceEndDate": "2024-07-31",
- "chargeAmount": 14.99,
- "taxAmount": 0,
- "chargeDescription": "",
- "chargeName": "Monthly Fee",
- "productName": "Music Service",
- "productRatePlanChargeId": "8ad097b4909708e001909b41bb085d38",
- "quantity": 1,
- "unitOfMeasure": ""
}
]
}