Skip to content

Payout list

Get a list of your payuts:

GET /v1/payouts
Host: query-binance.latamgateway.com
Content-Type: application/json
ACCOUNT_TOKEN: "<token>"

{
  "from": "2024-09-01 12:00:00",
  "to": "2024-09-12 23:35:59",
  "status": "done",
  "payment_method": "picpay",
  "sort": "created_at",
  "direction": "desc",
  "page": 1,
  "per_page": 40
}

Params descriptions

Param Mandatory Values Default
from false YYYY-MM-DD or YYYY-MM-DD HH:MM:SS (Timezone is -03:00) Today at 00:00:00 -03:00
to false YYYY-MM-DD or YYYY-MM-DD HH:MM:SS (Timezone is -03:00) Today at 23:59:59 -03:00
status false initial, processing, done, error All
payment_method false picpay picpay
sort false paid_at, created_at (defaults according to status.) created_at
direction false desc or asc desc
page false Any integer >= 1 1
per_page false Any integer >= 1 Maximum is 200

The response will be a list of payouts with the following format:

{
  "payouts": [
    {
      "partner_code": "0001",
      "name": "Customer’s name",
      "birth": "1996-03-09",
      "email": "[email protected]",
      "phone": "44988772211",
      "document": "11122233344",
      "value": 10.23,
      "payment_method": "picpay",
      "notification_url": "https://your-system.com/webhook",
      "fee_payer": "merchant",
      "status": "done",
      "paid_at": "2024-01-01T12:01:00-03:00",
      "created_at": "2024-01-01T12:00:55-03:00",
      "payment_id": "provider-payment-id",
      "reason": null
    },
    {
      "partner_code": "0002",
      "name": "Customer’s name",
      "birth": "1996-03-09",
      "email": "[email protected]",
      "phone": "44988772211",
      "document": "11122233344",
      "value": 6.11,
      "payment_method": "picpay",
      "notification_url": "https://your-system.com/webhook",
      "fee_payer": "merchant",
      "status": "error",
      "paid_at": null,
      "created_at": "2024-01-01T12:00:55-03:00",
      "payment_id": null,
      "reason": "PicPay account not found for the customer."
    }
  ],
  "total_pages": 1,
  "current_page": 1,
  "per_page": 40
}

Response params descriptions

Param Description Format Example Mandatory
partner_code The ID from your system String “0001” or “my-code”. Any String Yes
name Customer’s full name String “Jon Snow” Yes
document Customer’s CPF ID. String “11122233344” Yes
email Customer’s email String "[email protected]" No
phone Customer’s phone String “44988776655” No
birth Customer's date of birth String “1996-03-09” Yes
value Amount for the payout Float 10.23 Yes
fee_payer Who is gonna pay the fees String “merchant” (Default) or “customer” No
payment_method Payout’s payment method String “picpay” Yes
notification_url URL where our system is gonna send the Webhooks String “https://your-domain.com/webhook” Yes