Skip to main content
GET
/
v1
/
scheduled-payments
cURL
curl --request GET \
  --url https://api.example.com/v1/scheduled-payments \
  --header 'x-access-id: <api-key>'
{
  "scheduled_payments": [
    {
      "amount_in_cents": 123,
      "created_at": "2023-11-07T05:31:56Z",
      "id": 123,
      "receiver": "<string>",
      "scheduled_date": "2023-12-25",
      "status": "pending",
      "type": "pix",
      "executed_at": "2023-11-07T05:31:56Z",
      "transaction_id": 123
    }
  ],
  "next_cursor": "<string>"
}

Authorizations

x-access-id
string
header
required

UUID of the service account (e.g., 550e8400-e29b-41d4-a716-446655440000)

Query Parameters

cursor
string | null
limit
integer<int32> | null
Required range: x >= 0
status
null | enum<string>
Available options:
pending,
processing,
executed,
failed,
cancelled

Response

Scheduled payments retrieved

scheduled_payments
object[]
required
next_cursor
string | null