Create an issuing withdrawal
POST {{baseInfraUrl}}/{{version}}/issuing-withdrawal
Withdrawal money from your Issuing Balance.
Parameters | Value Type | Description |
---|---|---|
amount | REQUIRED | A non-negative integer that represents the amount in cents to be withdraw. |
externalId | REQUIRED | Unique external id to avoid duplicated withdrawals. |
description | REQUIRED | Description for the withdrawal. |
tags | OPTIONAL | List 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
Key | Datatype | Required | Description |
---|---|---|---|
Content-Type | string |
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"}}