Skip to main content
GET
/
v1
/
bank
/
customer
/
subscriptions
Get Customer Subscriptions
curl --request GET \
  --url https://api.peere.network/v1/bank/customer/subscriptions \
  --header 'Authorization: Bearer <token>'
{
  "statusCode": 200,
  "success": true,
  "data": {
    "subscriptions": [
      {
        "id": "<string>",
        "merchantName": "<string>",
        "entityId": "<string>",
        "amount": 123,
        "currency": "<string>",
        "cycle": "<string>",
        "agreementPhrase": "<string>",
        "enabled": true,
        "lastUsed": "2023-11-07T05:31:56Z",
        "startDate": "2023-11-07T05:31:56Z"
      }
    ],
    "total": 123
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

customerId
string
required

Response

Customer subscriptions retrieved successfully

statusCode
integer
Example:

200

success
boolean
Example:

true

data
object