This API enables users to place an order by taking order_id from the Create Order API as an input.
To use this API, users need to have sufficient balance in their Aurora account, or else an order will not be placed.
As an output response, either 200 or 400 will be shown, depending on the wallet of the user.
Sample Request
curl --location 'https://p-platform-gateway.pixxel.dev/orderdesk/order/place' \
--header 'Content-Type: application/json' \ --data '{
"order_id": "xxxx" }
Sample Response
{
"status": 400, "message": "No amount"
}
{
"status": 200,
"message": "Order placed" }
Comments
0 comments
Please sign in to leave a comment.