Skip to main content
POST
/
v1
/
submerchants
/
{merchantId}
/
payout-requests
Create payout request
curl --request POST \
  --url https://api-global.fastpaybrasil.com/v1/submerchants/{merchantId}/payout-requests \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "amount": 10000
}
'
{
  "id": "2vorkDcXyvzifL63YX09S9VqcnI"
}

Authorizations

Authorization
string
header
required

JWT Bearer token authentication. Use the JWT token obtained from the login endpoint in the Authorization header as 'Bearer {token}'.

Path Parameters

merchantId
string
required

ID of the submerchant requesting the payout

Example:

"2vorkDcXyvzifL63YX09S9VqcnI"

Body

application/json
amount
integer
required

Payout amount in cents (e.g., R$ 100.00 = 10000)

Required range: x >= 1
Example:

10000

Response

Payout request created successfully

id
string

Unique identifier of the created payout request

Example:

"2vorkDcXyvzifL63YX09S9VqcnI"