Skip to main content
GET
/
payment-plans
/
{id}
Get a Payment Plan
curl --request GET \
  --url https://api.flutterwave.com/v3/payment-plans/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: <content-type>'
{
  "status": "success",
  "message": "Payment plan fetched",
  "data": {
    "id": 63468,
    "name": "Sample Plan",
    "amount": 1000,
    "interval": "monthly",
    "duration": 12,
    "status": "active",
    "currency": "NGN",
    "plan_token": "rpp_0ec8c0e2acb9e4304b94",
    "created_at": "2024-03-08T06:59:41.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
integer<int32>
required
Example:

63468

Response

200 - application/json; charset=utf-8

OK

status
string
required
message
string
required
data
Data65 · object
required
Example:
{
"id": 3807,
"name": "the akhlm postman plan 2",
"amount": 5000,
"interval": "monthly",
"duration": 48,
"status": "active",
"currency": "NGN",
"plan_token": "rpp_12d2ef3d5ac1c13b9d30",
"created_at": "2020-01-16T18:08:19.000Z"
}