Back to Collection Items
Dim fso, outFile
Set fso = CreateObject("Scripting.FileSystemObject")
'Create a Unicode (utf-16) output text file.
Set outFile = fso.CreateTextFile("output.txt", True, True)
' 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")
set http = CreateObject("Chilkat.Http")
' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.JsonObject")
set queryParams = CreateObject("Chilkat.JsonObject")
success = queryParams.UpdateString("partnerId","{{partner_id}}")
success = queryParams.UpdateString("name","{{product_name}}")
success = queryParams.UpdateString("view","complete")
' Adds the "Authorization: Bearer {{partner_token}}" header.
http.AuthToken = "{{partner_token}}"
' resp is a Chilkat.HttpResponse
Set resp = http.QuickRequestParams("GET","https://domain.com/partner/v2/products",queryParams)
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 -G -d "partnerId=%7B%7Bpartner_id%7D%7D"
-d "name=%7B%7Bproduct_name%7D%7D"
-d "view=complete"
-H "Authorization: Bearer {{partner_token}}"
https://domain.com/partner/v2/products
Postman Collection Item JSON
{
"name": "[Partner] Get All Products",
"_postman_id": "711d585b-8524-43fb-8829-9d82659acae0",
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"type": "text",
"value": "Bearer {{partner_token}}"
}
],
"url": {
"raw": "{{api_host}}/partner/v2/products?partnerId={{partner_id}}&name={{product_name}}&view=complete",
"host": [
"{{api_host}}"
],
"path": [
"partner",
"v2",
"products"
],
"query": [
{
"key": "partnerId",
"value": "{{partner_id}}"
},
{
"key": "name",
"value": "{{product_name}}"
},
{
"key": "view",
"value": "complete"
}
]
}
},
"response": [
]
}