Canceling Subscriptions
Access Endpoint URL: https://rest.everyware.com/api/subscriptions/CancelSubscription [POST]
Send a request to the CancelSubscriptions endpoint to cancel an existing subscription.
Inbound Parameters
Parameters should be passed in a single JSON-body object.
Parameter Name | Data Type | Description | Optional/Required |
---|---|---|---|
SubscriptionID | long | The ID attached to the original subscription. It was returned in the "Data" parameter of the response to the CreateSubscription call. | Required |
Cancel Subscription Code Sample
{
"subscriptionID": 123456
}
{
"IsSuccess": true,
"Message": "The subscription has been successfully cancelled.",
"Data": 5503
}
Updated about 14 hours ago