Welcome to Zuora Product Documentation

Explore our rich library of product information

Use the Zuora REST API for updating subscription trigger dates

This article explains how to update trigger dates for a subscription using the Zuora REST API.

You can update the trigger dates for a subscription by using the Update action to set the following fields of the Subscription object:

  • ContractEffectiveDate

  • ServiceActivationDate

  • ContractAcceptanceDate

Request

POST /v1/action/update

Request Body

{
    "objects":[
        {
            "Id":"ff80808174ba55290174bdbcb6680727",
            "ContractEffectiveDate":"2020-10-03",
            "ContractAcceptanceDate":"2020-10-06",
            "ServiceActivationDate":"2020-10-03"
        }
    ],
    "type":"Subscription"
}