can you please any one let me know how to execute order create API in postman i am getting
{
"message": "Order ID in body does not match URI"
}
can you please any one let me know how to execute order create API in postman i am getting
{
"message": "Order ID in body does not match URI"
}
A sample curl is in our documentation, which I have previously linked to you:
https://docs.clover.com/docs/working-with-orders#creating-an-order
curl --request POST \ --url 'https://sandbox.dev.clover.com/v3/merchants/{mId}/orders' \ --header 'content-type: application/json' \ --header 'Authorization: Bearer {access_token}' \ --data '{"state":"open"}'
First, you create the order, with a state of open. You will need to make subsequent calls to add line-items, etc.
1 Person is following this question.