Body
This is the ID of the order to be placed on hold.
This is the reason for placing the order on hold.
Response
Indicates whether the call was successful. 1 if successful, 0 if not.
curl --location --request POST 'https://api.stateset.network/v1/order/hold' \
--header 'Content-Type: application/json' \
--header 'Authorization: Token <token>' \
--data-raw '{
"id": "",
"reason": "Payment issue"
}'
{
"success": 123
}This endpoint places an order on hold.
curl --location --request POST 'https://api.stateset.network/v1/order/hold' \
--header 'Content-Type: application/json' \
--header 'Authorization: Token <token>' \
--data-raw '{
"id": "",
"reason": "Payment issue"
}'
{
"success": 123
}curl --location --request POST 'https://api.stateset.network/v1/order/hold' \
--header 'Content-Type: application/json' \
--header 'Authorization: Token <token>' \
--data-raw '{
"id": "",
"reason": "Payment issue"
}'