Chilkat Online Tools

Xojo / Shopify / update a country

Back to Collection Items

// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

Dim http As New Chilkat.Http
Dim success As Boolean

http.SetRequestHeader "Content","<>"

Dim resp As Chilkat.HttpResponse
resp = http.QuickRequest("PUT","httpsDefaultParameterValue:DefaultParameterValue@DefaultParameterValue.myshopify.com/admin/countries/444574734.json")
If (http.LastMethodSuccess = False) Then
    System.DebugLog(http.LastErrorText)
    Return
End If

System.DebugLog(Str(resp.StatusCode))
System.DebugLog(resp.BodyStr)

Curl Command

curl -X PUT
	-H "Content: <>"
httpsDefaultParameterValue:DefaultParameterValue@DefaultParameterValue.myshopify.com/admin/countries/444574734.json

Postman Collection Item JSON

{
  "name": "update a country",
  "request": {
    "method": "PUT",
    "header": [
      {
        "key": "Content",
        "value": "<>"
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/admin/countries/444574734.json",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "admin",
        "countries",
        "444574734.json"
      ]
    },
    "description": "Update a country."
  },
  "response": [
  ]
}