Update an order
PATCH/v3/orders/:orderIdDescription
Update an order transactionId
. This will speed up the verification process for the order,
it’s not required but recommended.
Header Parameters
Name | Description | Required |
---|---|---|
App-Name | App-Name for the authorization | yes |
App-Version | App-Version for the authorization | no |
Forwarded | If you are proxying requests to the API, you must include the "Forwarded" header with the original request IP address. This is used for geolocation availability purposes. | no |
Path Parameters
Name | Description | Required |
---|---|---|
orderId | Order Id from a previous order creation | yes |
Payload
Name | Description | Required |
---|---|---|
transactionId | The transaction id of the exchange, after being broadcasted by the user. | yes |
Response
Here is an example of a successful response with a complete
status:
RESPONSE
{
"transactionId": "0xc1cb0cbe6db68347d7faa2280f1251872a155f6558451365b8309b6a92935004"
}
If the transactionId
was already set by calling this endpoint or it the
transaction was picked up by our verifying process, this endpoint will
respond with a Precondition Failed
status code.
Last updated on