Withdrawals

post
Authorizations
Path parameters
quoteIdstringRequired
Responses
200
Crypto withdrawal quote confirmed successfully
application/json
post
POST /quotes/crypto-withdrawal/{quoteId}/confirm HTTP/1.1
Host: 
Authorization: Bearer JWT
Accept: */*
{
  "success": true
}
post
Authorizations
Body
amountstringRequired
addressstringRequired
currencystring · enumRequiredPossible values:
Responses
201
Crypto withdrawal quote created successfully
application/json
post
POST /quotes/crypto-withdrawal HTTP/1.1
Host: 
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 51

{
  "amount": "text",
  "address": "text",
  "currency": "BTC"
}
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "type": "CryptoWithdrawal",
  "paymentMethod": "BALANCE",
  "side": "BUY",
  "pair": "BTC_EUR",
  "currency": "BTC",
  "amount": 1,
  "totalAmount": 1,
  "quantity": 1,
  "used": true,
  "expirationDate": "text",
  "price": 1,
  "marketPrice": 1,
  "fee": 1,
  "parameters": {
    "markup": 1,
    "creditCardTolerance": 1,
    "fixedFee": 1,
    "minFee": 1,
    "variableFeeRate": 1,
    "commission": 1,
    "iban": "text",
    "address": "text",
    "addressUserId": "text",
    "isInternal": true,
    "isBusinessAddress": true,
    "originalAmount": 1,
    "target": "FIAT_WITHDRAWAL"
  },
  "userId": "text",
  "liteTradingMarketPrice": 1
}
post
Authorizations
Path parameters
quoteIdstringRequired
Responses
200
Fiat withdrawal quote confirmed successfully
application/json
post
POST /quotes/fiat-withdrawal/{quoteId}/confirm HTTP/1.1
Host: 
Authorization: Bearer JWT
Accept: */*
{
  "success": true
}
post
Authorizations
Body
amountstringRequired
currencystring · enumRequiredPossible values:
ibanstring · min: 16Required
Responses
201
Fiat withdrawal quote created successfully
application/json
post
POST /quotes/fiat-withdrawal HTTP/1.1
Host: 
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 48

{
  "amount": "text",
  "currency": "EUR",
  "iban": "text"
}
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "type": "CryptoWithdrawal",
  "paymentMethod": "BALANCE",
  "side": "BUY",
  "pair": "BTC_EUR",
  "currency": "BTC",
  "amount": 1,
  "totalAmount": 1,
  "quantity": 1,
  "used": true,
  "expirationDate": "text",
  "price": 1,
  "marketPrice": 1,
  "fee": 1,
  "parameters": {
    "markup": 1,
    "creditCardTolerance": 1,
    "fixedFee": 1,
    "minFee": 1,
    "variableFeeRate": 1,
    "commission": 1,
    "iban": "text",
    "address": "text",
    "addressUserId": "text",
    "isInternal": true,
    "isBusinessAddress": true,
    "originalAmount": 1,
    "target": "FIAT_WITHDRAWAL"
  },
  "userId": "text",
  "liteTradingMarketPrice": 1
}

Last updated