Link transactions
Request:
PUT |
https://api.moneypipe.com/sandbox/v1/operations/{operation_id}/link-transactions |
Request headers:
Request body:
Body
{ "tx_id": ["5ed8a94eedf038930c17", "cf4029434106009bdc31"] }
Body details:
Parameter | Type | Description |
---|---|---|
tx_id * | array | Array of transaction ID`s |
* - required
Response:
200
Body
{ "data": { "id": "eFbIa4lRUf3XQwlnoPmi", "application_id": "c84b5aae7378b62d0e47", "application_name": "Application name", "category": "application", "order_id": "422", "amount": "185.30000000", "fee": "0.00000000", "amount_paid": "0.03127098", "rate": "0.00018330", "currency": "USD", "currency_paid": "BTC", "status": "confirmed", "address": "2MxrLNgYJS5MM53XTVLc5QcAM4EwwfoDgy7", "created_at": "2019-10-27T13:33:03.224328Z", "updated_at": "2019-10-27T13:33:03.224391Z", "payment_url": null, "redirect_url": null, "transactions": [ { "id": "5ed8a94eedf038930c17", "tx_id": "miIq7CTGx3PPryqOaOf1KN7nBDOYMf6tiNRl8avIXBbEqDWDhfgbomzJHZpF", "amount": "0.01563549", "status": "confirmed", "linked": true, "reject_reason": null, "created_at": "2019-10-27T13:33:03.224501Z", "updated_at": "2019-10-27T13:33:03.224562Z" }, { "id": "cf4029434106009bdc31", "tx_id": "544378d028fe9d6a3e3200787c7b3e60e4ef987427d7dc32af87507ffeaccfaa", "amount": "0.01563549", "status": "confirmed", "linked": true, "reject_reason": null, "created_at": "2019-10-27T13:33:03.224501Z", "updated_at": "2019-10-27T13:33:03.224562Z" } ] } }
Operation details:
Parameter | Type | Description |
---|---|---|
id | string | Operation ID |
application_id | string |
Application id |
application_name | string | Application name |
category | string | Operation category (application, manual) |
order_id | string | Clients` order number |
amount | string | Operation amount |
fee | string | Fee from operation amount |
amount_paid | string | Paid amount of operation |
rate | string | Exchange rate at the moment of payment |
currency | string | Currency of issued operation |
currency_paid | string | Currency in which operation will be paid |
status | string | Operation status |
address | string | Operation address |
created_at | string | Date of operation creation |
updated_at | string | Date of operation change |
payment_url | string | Link to the payment page |
redirect_url | string | Link to the page, to which redirect from payment page will be made |
transactions | array | List of operation transactions |
Transaction details:
Parameter | Type | Description |
---|---|---|
id | string | Transaction ID |
tx_id | string |
Transaction ID in Blockchain |
amount | string |
Transaction amount |
status | string | Transaction status |
linked | bool | The transaction was linked manually |
reject_reason | string |
Reason of rejecting transaction (only with reject status) |
created_at | string |
Date of transaction was created |
updated_at | string |
Date of transaction was changed |