Cancel subscription renewal history
PATCH
/user/{userId}/subscription/{subscriptionId}/history/cancel
const url = 'https://example.com/user/example/subscription/example/history/cancel';const options = {method: 'PATCH', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request PATCH \ --url https://example.com/user/example/subscription/example/history/cancel \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”userId
required
string
subscriptionId
required
string
Responses
Section titled “Responses”Subscription renewal history cancelled.
