VBScript / APPIA API / VALIDATE SMILE FOR BUNDLE LIST
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")
' Use this online tool to generate code from sample JSON: Generate Code to Create JSON
' The following JSON is sent in the request body.
' {
' "serviceCode": "V-Internet",
' "account": "1402000567",
' "type": "SMILE"
' }
' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.JsonObject")
set json = CreateObject("Chilkat.JsonObject")
success = json.UpdateString("serviceCode","V-Internet")
success = json.UpdateString("account","1402000567")
success = json.UpdateString("type","SMILE")
' Adds the "Authorization: Bearer {{auth}}" header.
http.AuthToken = "{{auth}}"
http.SetRequestHeader "Content-Type","application/json"
' resp is a Chilkat.HttpResponse
Set resp = http.PostJson3("https://domain.com/utility/validate/smile_bundle","application/json",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 "Authorization: Bearer <access_token>"
-H "Content-Type: application/json"
-H "Authorization: Bearer {{auth}}"
-d '{
"serviceCode": "V-Internet",
"account": "1402000567",
"type":"SMILE"
}'
https://domain.com/utility/validate/smile_bundle
Postman Collection Item JSON
{
"name": "VALIDATE SMILE FOR BUNDLE LIST",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{auth}}",
"type": "string"
}
]
},
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Bearer {{auth}}"
}
],
"body": {
"mode": "raw",
"raw": "{\r\n\"serviceCode\": \"V-Internet\",\r\n\"account\": \"1402000567\",\r\n\"type\":\"SMILE\"\r\n}\r\n\r\n\r\n\r\n"
},
"url": {
"raw": "{{url}}/utility/validate/smile_bundle",
"host": [
"{{url}}"
],
"path": [
"utility",
"validate",
"smile_bundle"
]
},
"description": "\n"
},
"response": [
]
}