Create a new withdrawal

POST /withdrawals

Body

  • iban string Required

    Destination address's IBAN, where to send withdrawn funds.

Responses

  • 200

    OK

    Hide response attribute Show response attribute object
    • stellar_memo_text string

      Generated Stellar memo value to attach to Stellar withdrawal transaction.

  • 401

    Unauthorized

POST /withdrawals
curl \
 -X POST https://stablecoin-bankhaus.bitbond.biz/api/v1/withdrawals \
 -H "Content-Type: application/json" \
 -d '{"iban":"string"}'
Request example
{
  "iban": "string"
}
Request examples
{
  "iban": "string"
}
Response examples (200)
{
  "stellar_memo_text": "string"
}
Response examples (200)
{
  "stellar_memo_text": "string"
}