Pular para o conteúdo principal
GET
/
v1
/
scheduled-payments
Listar Pagamentos Agendados
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>"
}

Autorizações

x-access-id
string
header
obrigatório

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

Parâmetros de consulta

cursor
string | null
limit
integer<int32> | null
Intervalo obrigatório: x >= 0
status
null | enum<string>
Opções disponíveis:
pending,
processing,
executed,
failed,
cancelled

Resposta

Scheduled payments retrieved

scheduled_payments
object[]
obrigatório
next_cursor
string | null