Bunne Docs
Liquidações

Listar liquidações.

Lista as liquidações com escopo do tenant. Exige a permissão settlements:read.

GET
/settlements

Lista as liquidações com escopo do tenant. Exige a permissão settlements:read.

Autorização

ApiKeyAuth
AutorizaçãoBearer <token>

Em: header

Parâmetros de query

page?integer
Intervalo1 <= value
Padrão1
limit?integer
Intervalo1 <= value <= 100
Padrão50
status?string

Value in

  • "pending"
  • "processing"
  • "paid"
  • "failed"
  • "canceled"

Corpo da resposta

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/settlements"
{  "object": "list",  "data": [    {      "object": "settlement",      "id": "string",      "payout_request_id": "string",      "amount_cents": 1,      "currency": "BRL",      "status": "pending",      "bank_export_format": "ofx",      "bank_export_generated_at": "2019-08-24T14:15:22Z",      "paid_at": "2019-08-24T14:15:22Z",      "created_at": "2019-08-24T14:15:22Z",      "updated_at": "2019-08-24T14:15:22Z",      "request_id": "req_xxx"    }  ],  "page": 1,  "limit": 1,  "total": 0,  "total_pages": 0,  "request_id": "req_xxx"}