Skip to main content
POST
/
seller
/
payouts
/
withdraw
Create payout
curl --request POST \
  --url https://api.managem.co.uk/seller/payouts/withdraw \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "amount": 123,
  "currency": "<string>"
}
'
{
  "id": "<string>",
  "amount": 123,
  "currency": "<string>",
  "arrivalDate": "<string>",
  "status": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Details required to initiate a payout

amount
integer
required

Amount to withdraw in the smallest currency unit

currency
string
required

Three-letter ISO currency code for the payout

Response

Payout created

Information returned after creating a payout

id
string
required

Unique identifier for the payout

amount
number
required

Amount of the payout in the smallest currency unit

currency
string
required

Currency for the payout

arrivalDate
string
required

Estimated date when the payout will arrive

status
string
required

Current status of the payout