POST
/
transfer
/
fiat-withdrawals
Create Fiat Withdrawal
curl --request POST \
  --url https://api.paxos.com/v2/transfer/fiat-withdrawals \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "amount": "12.34",
  "asset": "USD",
  "fiat_account_id": "caa82b32-8abd-4899-afdc-f9d4bf9b4e98",
  "profile_id": "5fc6d191-193c-4e28-94fa-656bbdbdfaad",
  "identity_id": "54385e67-d7ef-40d1-b488-ceda6dd9b264"
}'
{
  "id": "f190b163-208f-4d73-8deb-4fb8b24add00",
  "customer_id": "9b8c9cba-801e-4418-adc0-ede709df6339",
  "profile_id": "5fc6d191-193c-4e28-94fa-656bbdbdfaad",
  "identity_id": "54385e67-d7ef-40d1-b488-ceda6dd9b264",
  "amount": "10.00",
  "total": "10.00",
  "fee": "0.0000000",
  "asset": "USD",
  "balance_asset": "USD",
  "direction": "DEBIT",
  "type": "CUBIX_WITHDRAWAL",
  "status": "PENDING",
  "created_at": "2023-07-13T18:36:08.737Z",
  "updated_at": "2023-07-13T18:36:08.737Z",
  "fiat_account_id": "caa82b32-8abd-4899-afdc-f9d4bf9b4e98"
}

Authorizations

Authorization
string
header
required

Paxos APIs use OAuth 2 with the client credentials grant flow.

Token URLs:

Learn more in the API credentials guide →

Body

application/json

Response

200
application/json

A successful response.

The response is of type object.