Chilkat Online Tools

VBScript / Shopify / Create a new charge

Back to Collection Items

Dim fso, outFile
Set fso = CreateObject("Scripting.FileSystemObject")
Set outFile = fso.CreateTextFile("output.txt", True)

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

set http = CreateObject("Chilkat_9_5_0.Http")

http.SetRequestHeader "Content","<>"

' resp is a Chilkat_9_5_0.HttpResponse
Set resp = http.QuickRequest("POST","httpsDefaultParameterValue:DefaultParameterValue@DefaultParameterValue.myshopify.com/admin/recurring_application_charges.json")
If (http.LastMethodSuccess = 0) Then
    outFile.WriteLine(http.LastErrorText)
    WScript.Quit
End If

outFile.WriteLine(resp.StatusCode)
outFile.WriteLine(resp.BodyStr)


outFile.Close

Curl Command

curl -X POST
	-H "Content: <>"
httpsDefaultParameterValue:DefaultParameterValue@DefaultParameterValue.myshopify.com/admin/recurring_application_charges.json

Postman Collection Item JSON

{
  "name": "Create a new charge",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Content",
        "value": "<>"
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/admin/recurring_application_charges.json",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "admin",
        "recurring_application_charges.json"
      ]
    },
    "description": "Create a new charge."
  },
  "response": [
  ]
}