Skip to main content
GET
/
v1
/
recurring
/
{scheduleId}
Get Recurring Schedule By ID
curl --request GET \
  --url https://api.peere.network/v1/recurring/{scheduleId} \
  --header 'Authorization: Bearer <token>'
{
  "statusCode": 200,
  "success": true,
  "data": {
    "scheduleId": "<string>",
    "customerId": "<string>",
    "agreementPhrase": "<string>",
    "amount": 123,
    "currency": "<string>",
    "frequency": "<string>",
    "interval": 123,
    "status": "<string>",
    "startDate": "2023-11-07T05:31:56Z",
    "nextBillingDate": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

scheduleId
string
required

Response

Recurring schedule retrieved successfully

statusCode
integer
Example:

200

success
boolean
Example:

true

data
object