cURL
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 } }
Retrieve all subscriptions for a customer.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Customer subscriptions retrieved successfully
200
true
Show child attributes