Request Withdraw - Fiat
requires auth
Request Withdraw for Currency (Fiat)
Endpoint to request a withdraw from your 1KPrime account to your external whitelisted Bank accounts.
POST /api/v1/accounting/account/{accountId}/request/withdraw/fiatPath Parameters:
Path
Type
Description
accountId*
string
your account ID
Body Parameters:
Body
Type
Description
amount *
object
Asset amount you want to withdraw
routingNumber
string
Your Bank's routing number
accountNumber
string
Your account number at the recipient Bank.
instructions
array of string
Any additional instructions
Example
POST /api/v1/accounting/account/myAccountID/request/withdraw/fiat// Request body
{
"amount": "100 USD",
"type": "fedwire", // others "ach", "rtp", etc.
"routingNumber": "012345678",
"accountNumber": "0123456789",
"instructions": [
"additional instruction"
]
}Last updated
