Create an issuing withdrawal

POST {{baseInfraUrl}}/{{version}}/issuing-withdrawal

Withdrawal money from your Issuing Balance.

ParametersValue TypeDescription
amountREQUIREDA non-negative integer that represents the amount in cents to be withdraw.
externalIdREQUIREDUnique external id to avoid duplicated withdrawals.
descriptionREQUIREDDescription for the withdrawal.
tagsOPTIONALList of strings to tag the entity for future queries. All tags will be converted to lowercase.

Request Body

{"amount"=>10000, "description"=>"Sending back", "externalId"=>"my_external_id", "tags"=>["iron", "bank"]}

HEADERS

KeyDatatypeRequiredDescription
Content-Typestring

RESPONSES

status: OK

{"message":"Withdrawal successfully created","withdrawal":{"amount":10000,"created":"2022-05-17T20:10:18.179144+00:00","description":"Sending back","externalId":"my_external_id_1","id":"6037115762638848","issuingTransactionId":"5474165809217536","tags":["iron","bank"],"transactionId":"5658206160289792","updated":"2022-05-17T20:10:18.580625+00:00"}}