Get withdraw by transaction_uid
POST/merchant-api/v1/withdraw/:transaction_uid
This method shows the withdraw by provided in params transaction_uid:
To use method you must send empty body in the HTTP request
Request
Path Parameters
transaction_uid stringrequired
The id of the withdraw, which will be shown by the method
Example: 268b2841-ca68-4b55-bf09-25641f1f304a
Responses
- 201
The withdraw by 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...