Skip to main content

Update Subscription Plan

Request parameters

FieldDescriptionTypeLengthMandatory
nameName of the Subscription Plan.String255No
descriptionDescription of the Subscription Plan.String255No
recurrentAmountAmount to be billed recurrently.Double18.2No
currencyIsoCodeCurrency code.String3No
trialDurationPeriodPeriod of the trial. Required if trialDurationUnit is provided.Int2Conditional
trialDurationUnitUnit of the trial period. Required if trialDurationPeriod is provided.String5Conditional
billingOccurrenceRecurrence of the billing occurrences. Required if billingUnit is provided.Int2Conditional
billingUnitUnit of the billing recurrence. Required if billingOccurrence is provided.String5Conditional
billingCyclesNumber of the billing occurrences.Int2No
merchantMetadataMerchant Metadata fields sent during the creation of the Subscription Plan.String255No
info

The request must provide the following header:

x-api-key: {merchantKey}

Request sample

Path:

PATCH {baseURL}/plans/SubscriptionPlan-12033695-99d8-4dc6-bf51-db64ef27620b

Header:

Content-Type: application/json
Accept-Language: en-US
x-api-key: {merchantKey}
{
"name": "Premium music subscription",
"description": "Premium music for only 25 EUR!",
"recurrentAmount": 25.00,
"currencyIsoCode": "EUR",
"trialDurationPeriod": 0,
"trialDurationUnit": "day",
"billingUnit": "month",
"billingOccurance": 0,
"billingCycles": 0,
"merchantMetadata": "{\"orderTypeId\": 1asd265jh4, \"usageTracking\": false, \"referenceId\": s125jkwh2321 }"
}

Response parameters

FieldDescriptionTypeLength
idUnique Identifier of the created Subscription Plan. Format: "SubscriptionPlan" + "-" + <UUID>String53
createdAtTimestamp of when the Subscription Plan was created. Format: yyyy-MM-dd'T'HH:mm:ss.SS'ZDateTime24
updatedAtTimestamp of when the Subscription Plan was last updated. Format: yyyy-MM-dd'T'HH:mm:ss.SS'ZDateTime24
deletedAtTimestamp of when the Subscription Plan was deleted (if applicable). Format: yyyy-MM-dd'T'HH:mm:ss.SS'ZDateTime24
nameName of the Subscription Plan.String255
descriptionDescription of the Subscription Plan.String255
recurrentAmountAmount to be billed recurrently.Double18.2
currencyIsoCodeCurrency code.String3
trialDurationPeriodPeriod of the trial.Int2
trialDurationUnitUnit of the trial period.String5
billingOccurrenceRecurrence of the billing occurrences.Int2
billingUnitUnit of the billing recurrence.String5
billingCyclesNumber of the billing occurrences.Int2
prepaidAlways "false". Once created, a plan cannot be updated.Boolean5
merchantMetadataMerchant Metadata fields sent during the creation of the Subscription Plan.String255

Response sample

Status Code: 200 (OK)

Header:

Content-Type: application/json
Accept-Language: en-US
{
"id": "as125fr2-12d3-45d6-78d9-abc123qwe456",
"createdAt": "2021-02-11T17:15:58.512Z",
"updatedAt": "2021-02-11T17:15:58.512Z",
"deletedAt": null,
"name": "Premium music subscription",
"description": "Premium music for only 25 EUR!",
"recurrentAmount": 2500.68,
"currencyIsoCode": "EUR",
"trialDurationPeriod": 0,
"trialDurationUnit": "day",
"billingUnit": "month",
"billingOccurance": 0,
"billingCycles": 0,
"prepaid": false,
"merchantMetadata": "{\"orderTypeId\": 1asd265jh4, \"usageTracking\": false, \"referenceId\": s125jkwh2321 }"
}
info

For error handling, please refer to this section.