POST
/
transfer
/
fiat-deposit-instructions
Create Fiat Deposit Instructions
curl --request POST \
  --url https://api.paxos.com/v2/transfer/fiat-deposit-instructions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "profile_id": "5fc6d191-193c-4e28-94fa-656bbdbdfaad",
  "fiat_network": "WIRE",
  "identity_id": "8a398cb6-4e3b-4868-9cea-a1c567856e68",
  "account_ id": "91f91384-30d4-46c2-9118-7f3cec676a2c",
  "ref_id": "idempotence_id",
  "routing_number_type": "SWIFT",
  "metadata": {
    "my_id": "4024ee50-eefb-4f2e-85c7-e7899c0b7da5"
  }
}'
{
  "id": "f190b163-208f-4d73-8deb-4fb8b24add00",
  "profile_id": "5fc6d191-193c-4e28-94fa-656bbdbdfaad",
  "customer_id": "9b8c9cba-801e-4418-adc0-ede709df6339",
  "ref_id": "idempotence_id",
  "status": "VALID",
  "memo_id": "9CFXQSCMSPLFHXLZ",
  "fiat_network_instructions": {
    "wire": {
      "account_number": "12345678",
      "fiat_account_owner_address": {
        "country": "USA",
        "address1": "456 Main Street, NY",
        "city": "New York",
        "province": "NY",
        "address2": "",
        "zip_code": "10101"
      },
      "routing_details": {
        "routing_number_type": "ABA",
        "routing_number": "123456789",
        "bank_name": "Customers Bank",
        "bank_address": {
          "country": "USA",
          "address1": "123 Bank Street",
          "city": "New York",
          "province": "NY",
          "address2": "",
          "zip_code": "10101"
        }
      }
    },
    "fiat_account_owner": {
      "person_details": {
        "first_name": "Jane",
        "last_name": "Doe"
      }
    },
    "metadata": {
      "my_id": "4024ee50-eefb-4f2e-85c7-e7899c0b7da5"
    }
  }
}

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.