Get withdraw by external_id
POST/merchant-api/v1/withdraw/get-by-external-id
This method shows the withdraw by external_id
Request
- application/json
Body
required
The description for the Post Body.
external_id stringrequired
External id that you specified when creating the withdraw
gate_id string
Gate id you specified when creating the withdraw
Responses
- 201
The withdraw by external id was successfully geted.
- application/json
- Schema
- Example (from schema)
Schema
transaction_uid stringrequired
Id of the withdraw
external_id stringrequired
External id of the withdraw
amount stringrequired
Amount of money to withdraw
merchant_withdraw_fee stringrequired
Fee for the withdraw
status stringrequired
Current status of the withdraw
remark stringrequired
Description of withdraw status
currency_id stringrequired
Currency of the withdraw
comment stringrequired
the description of the withdraw
created_at stringrequired
Time stamp of the withdraw creation
updated_at stringrequired
Time stamp of the withdraw update
{
"transaction_uid": "268b2841-ca68-4b55-bf09-25641f1f304a",
"external_id": "my_external_id_0001",
"amount": "100",
"merchant_withdraw_fee": "10",
"status": "Created",
"remark": "Gate error",
"currency_id": "RUB",
"comment": "My first withdraw",
"created_at": "2022-09-15T07:26:13.893Z",
"updated_at": "2022-09-15T07:26:13.893Z"
}
Loading...