Foxpro / Shopify / Re-opening a closed Order
Back to Collection Items
LOCAL loHttp
LOCAL lnSuccess
LOCAL loResp
* This example assumes the Chilkat API to have been previously unlocked.
* See Global Unlock Sample for sample code.
* For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.Http')
loHttp = CreateObject('Chilkat.Http')
loHttp.SetRequestHeader("Content","<>")
loResp = loHttp.QuickRequest("POST","httpsDefaultParameterValue:DefaultParameterValue@DefaultParameterValue.myshopify.com/admin/orders/4554953422/open.json")
IF (loHttp.LastMethodSuccess = 0) THEN
? loHttp.LastErrorText
RELEASE loHttp
CANCEL
ENDIF
? STR(loResp.StatusCode)
? loResp.BodyStr
RELEASE loResp
RELEASE loHttp
Curl Command
curl -X POST
-H "Content: <>"
httpsDefaultParameterValue:DefaultParameterValue@DefaultParameterValue.myshopify.com/admin/orders/4554953422/open.json
Postman Collection Item JSON
{
"name": "Re-opening a closed Order",
"request": {
"method": "POST",
"header": [
{
"key": "Content",
"value": "<>"
}
],
"url": {
"raw": "{{baseUrl}}/admin/orders/4554953422/open.json",
"host": [
"{{baseUrl}}"
],
"path": [
"admin",
"orders",
"4554953422",
"open.json"
]
},
"description": "Re-opening a closed order."
},
"response": [
]
}