Skip to main content

membership.subscription.cancelled

Sent when a membership is canceled.

Sends Member object and Customer object.

{
"object": {
"id": "uuid v4",
"status": "enum: ['pending', 'invited', 'active', 'canceled', 'expired']",
"startsAt": "timestamp",
"expiresAt": "timestamp",
"autoRenew": "boolean",
"tierId": "uuid v4",
"tierName": "string",
"amount": "decimal",
"interval": "enum ['day', 'week', 'month', 'year']",
"intervalCount": "integer",
"createdAt": "iso8601 timestamp",
"type": "membership.subscription"
},
"customer": {
"id": "uuid v4",
"name": "string in form of '${firstName} ${lastName}'",
"firstName": "string",
"lastName": "string",
"email": "string",
"marketingConsent": "boolean"
}
}