Skip to main content
PUT
/
subscriptions
/
{id}
/
cancel
Deactivate a Subscription
curl --request PUT \
  --url https://api.flutterwave.com/v3/subscriptions/{id}/cancel \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: <content-type>'
{
  "status": "success",
  "message": "Subscription cancelled",
  "data": {
    "id": 4147,
    "amount": 2000,
    "customer": {
      "id": 247546,
      "customer_email": "h0vkard@flw.ext"
    },
    "plan": 3657,
    "status": "cancelled",
    "created_at": "2019-12-31T17:00:55.000Z"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Content-Type
enum<string>
required
Available options:
application/json
Example:

"application/json"

Path Parameters

id
string
required

Response

OK

status
string
required
message
string
required
data
Data62 · object
required
Example:
{
"id": 4147,
"amount": 2000,
"customer": {
"id": 247546,
"customer_email": "h0vkard@flw.ext"
},
"plan": 3657,
"status": "cancelled",
"created_at": "2019-12-31T17:00:55.000Z"
}