Back to Collection Items
Use ChilkatAx-win32.pkg
Procedure Test
Handle hoHttp
Boolean iSuccess
Variant vJson
Handle hoJson
Variant vResp
Handle hoResp
String sTemp1
Integer iTemp1
Boolean bTemp1
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
Get Create (RefClass(cComChilkatHttp)) To hoHttp
If (Not(IsComObjectCreated(hoHttp))) Begin
Send CreateComObject of hoHttp
End
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "account_name": "{{acc_name}}",
// "channel": "CP",
// "country": "CA",
// "device": {
// "time": "2019-09-23T12:45:58.000Z"
// }
// }
Get Create (RefClass(cComChilkatJsonObject)) To hoJson
If (Not(IsComObjectCreated(hoJson))) Begin
Send CreateComObject of hoJson
End
Get ComUpdateString Of hoJson "account_name" "{{acc_name}}" To iSuccess
Get ComUpdateString Of hoJson "channel" "CP" To iSuccess
Get ComUpdateString Of hoJson "country" "CA" To iSuccess
Get ComUpdateString Of hoJson "device.time" "2019-09-23T12:45:58.000Z" To iSuccess
Send ComSetRequestHeader To hoHttp "Content-Type" "application/json"
Send ComSetRequestHeader To hoHttp "X-GP-Idempotency" "12348"
Send ComSetRequestHeader To hoHttp "X-GP-Version" "{{version}}"
// Adds the "Authorization: Bearer {{token}}" header.
Set ComAuthToken Of hoHttp To "{{token}}"
Send ComSetRequestHeader To hoHttp "Accept" "application/json"
Get pvComObject of hoJson to vJson
Get ComPostJson3 Of hoHttp "https://{{url}}/ucp/devices" "application/json" vJson To vResp
If (IsComObject(vResp)) Begin
Get Create (RefClass(cComChilkatHttpResponse)) To hoResp
Set pvComObject Of hoResp To vResp
End
Get ComLastMethodSuccess Of hoHttp To bTemp1
If (bTemp1 = False) Begin
Get ComLastErrorText Of hoHttp To sTemp1
Showln sTemp1
Procedure_Return
End
Get ComStatusCode Of hoResp To iTemp1
Showln iTemp1
Get ComBodyStr Of hoResp To sTemp1
Showln sTemp1
Send Destroy of hoResp
End_Procedure
Curl Command
curl -X POST
-H "Content-Type: application/json"
-H "Authorization: Bearer {{token}}"
-H "Accept: application/json"
-H "X-GP-Version: {{version}}"
-H "X-GP-Idempotency: 12348"
-d '{
"account_name": "{{acc_name}}",
"channel": "CP",
"country":"CA",
"device": {
"time": "2019-09-23T12:45:58.000Z"
}
}'
https://{{url}}/ucp/devices
Postman Collection Item JSON
{
"name": "TRA_10.0 Device Sync",
"event": [
{
"listen": "prerequest",
"script": {
"exec": [
"var str = String(\"00000000\"+ Math.floor(Math.random()*100000000) + 1).slice(-8);",
"",
"pm.environment.set(\"reference\",str);"
],
"type": "text/javascript"
}
}
],
"request": {
"auth": {
"type": "noauth"
},
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
},
{
"key": "Authorization",
"value": "Bearer {{token}}",
"type": "text"
},
{
"key": "Accept",
"value": "application/json",
"type": "text"
},
{
"key": "X-GP-Version",
"value": "{{version}}",
"type": "text"
},
{
"key": "X-GP-Idempotency",
"value": "12348",
"type": "text",
"disabled": true
}
],
"body": {
"mode": "raw",
"raw": "{\r\n\r\n \"account_name\": \"{{acc_name}}\",\r\n \"channel\": \"CP\",\r\n \"country\":\"CA\",\r\n \"device\": {\r\n \"time\": \"2019-09-23T12:45:58.000Z\"\r\n }\r\n }"
},
"url": {
"raw": "https://{{url}}/ucp/devices",
"protocol": "https",
"host": [
"{{url}}"
],
"path": [
"ucp",
"devices"
]
}
},
"response": [
]
}