Get recurring subscription
GET
https://app.ecwid.com/api/v3/{storeId}/subscriptions/{subscriptionId}
Required access scopes
Your app must have the following access scopes to make this request: read_subscriptions
Path params
All path params are required.
storeId
number
Ecwid store ID.
subscriptionId
number
Internal subscription ID.
Headers
The Authorization header is required.
Authorization
Bearer secret_ab***cd
Access token of the application.
Response JSON
A JSON object with the following fields:
subscriptionId
number
Internal subscription ID.
customerId
number
Internal ID of the customer who bought subscription.
status
string
One of:
ACTIVE
CANCELLED
LAST_CHARGE_FAILED
REQUIRES_PAYMENT_CONFIRMATION
statusUpdated
string
Datetime when the subscription status was updated for the last time.
For example, 2024-05-26 13:37:46 +0000
created
string
Datetime when the order containing subscription was placed.
For example, 2024-05-26 13:37:46 +0000
cancelled
string
Datetime when the subscription was cancelled.
For example, 2024-05-26 13:37:46 +0000
nextCharge
string
Datetime of the next recurring charge for the subscription.
For example, 2024-05-26 13:37:46 +0000
createTimestamp
number
Datetime when the order containing subscription was placed in UNIX timestamp format.
For example, 1623848020508
updateTimestamp
number
Datetime when the subscription status was updated for the last time in UNIX timestamp format.
For example, 1623848020508
chargeSettings
Details about recurring charges set up for the subscription.
paymentMethod
Details about the payment method used for the subscription.
orders
Short details about the order containing the subscription: ID, total, creation date.
orderTemplate
Detailed information about the order containing the subscription.
chargeSettings
recurringInterval
string
Search term for the time scale of subscription's recurring interval.
One of:
DAY
WEEK
MONTH
YEAR
recurringIntervalCount
number
Search term for the frequency of subscription's recurring charges.
One of:
for DAY
- 1
(daily)
for WEEK
- 1
(weekly) or 2
(biweekly)
for MONTH
- 1
(monthly) or 3
(quarterly)
for YEAR
- 1
(annually)
paymentMethod
creditCardMaskedNumber
string
Credit card masked number, e.g. *1111.
creditCardBrand
string
Credit card brand, e.g. Visa.
orders
id
number
Internal order ID.
total
number
Order total .
createDate
string
Order creation date and time, e.g. 2021-06-16 12:53:39 +0000.
orderTemplate
A JSON object with the order details in the same format as in the GET order request.
Last updated
Was this helpful?