Chilkat Online Tools

VBScript / Egyptian eInvoicing SDK R1.5 / 11. Update EGS Code Usage

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")

' Use this online tool to generate code from sample JSON: Generate Code to Create JSON

' The following JSON is sent in the request body.

' {
'   "itemCode": "EG-113317713-ABCD",
'   "codeName": "ABCD Updated",
'   "codeNameAr": "ABCD Updated Arabic",
'   "activeFrom": "2021-04-06T00:00:00Z",
'   "activeTo": "2021-06-30T23:59:59Z",
'   "description": "Description of code 123",
'   "descriptionAr": " 2314   ",
'   "parentCode": "10000051",
'   "requestReason": "Request reason text Updated",
'   "linkedCode": "EG-728466198-Yes"
' }

set json = CreateObject("Chilkat_9_5_0.JsonObject")
success = json.UpdateString("itemCode","EG-113317713-ABCD")
success = json.UpdateString("codeName","ABCD Updated")
success = json.UpdateString("codeNameAr","ABCD Updated Arabic")
success = json.UpdateString("activeFrom","2021-04-06T00:00:00Z")
success = json.UpdateString("activeTo","2021-06-30T23:59:59Z")
success = json.UpdateString("description","Description of code 123")
success = json.UpdateString("descriptionAr"," 2314   ")
success = json.UpdateString("parentCode","10000051")
success = json.UpdateString("requestReason","Request reason text Updated")
success = json.UpdateString("linkedCode","EG-728466198-Yes")

http.SetRequestHeader "Content-Type","application/json"
http.SetRequestHeader "Accept-Language","en"
' Adds the "Authorization: Bearer <access_token>" header.
http.AuthToken = "<access_token>"

set sbRequestBody = CreateObject("Chilkat_9_5_0.StringBuilder")
success = json.EmitSb(sbRequestBody)

' resp is a Chilkat_9_5_0.HttpResponse
Set resp = http.PTextSb("PUT","https://domain.com/api/v1.0/codetypes/requests/codes/:codeUsageRequestId",sbRequestBody,"utf-8","application/json",0,0)
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 PUT
	-H "Authorization: Bearer <access_token>"
	-H "Content-Type: application/json"
	-H "Accept-Language: en"
	-d '{
    "itemCode": "EG-113317713-ABCD",
    "codeName": "ABCD Updated",
    "codeNameAr": "ABCD Updated Arabic",
    "activeFrom": "2021-04-06T00:00:00Z",
    "activeTo": "2021-06-30T23:59:59Z",
    "description": "Description of code 123",
    "descriptionAr": " 2314 وصف الكود بالعربي",
    "parentCode": "10000051",
    "requestReason": "Request reason text Updated",
    "linkedCode": "EG-728466198-Yes"
}'
https://domain.com/api/v1.0/codetypes/requests/codes/:codeUsageRequestId

Postman Collection Item JSON

{
  "name": "11. Update EGS Code Usage",
  "request": {
    "auth": {
      "type": "bearer",
      "bearer": [
        {
          "key": "token",
          "value": "{{generatedAccessToken}}",
          "type": "string"
        }
      ]
    },
    "method": "PUT",
    "header": [
      {
        "key": "Content-Type",
        "value": "application/json"
      },
      {
        "key": "Accept-Language",
        "value": "en",
        "type": "text"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"itemCode\": \"EG-113317713-ABCD\",\n    \"codeName\": \"ABCD Updated\",\n    \"codeNameAr\": \"ABCD Updated Arabic\",\n    \"activeFrom\": \"2021-04-06T00:00:00Z\",\n    \"activeTo\": \"2021-06-30T23:59:59Z\",\n    \"description\": \"Description of code 123\",\n    \"descriptionAr\": \" 2314 وصف الكود بالعربي\",\n    \"parentCode\": \"10000051\",\n    \"requestReason\": \"Request reason text Updated\",\n    \"linkedCode\": \"EG-728466198-Yes\"\n}"
    },
    "url": {
      "raw": "{{apiBaseUrl}}/api/v1.0/codetypes/requests/codes/:codeUsageRequestId",
      "host": [
        "{{apiBaseUrl}}"
      ],
      "path": [
        "api",
        "v1.0",
        "codetypes",
        "requests",
        "codes",
        ":codeUsageRequestId"
      ],
      "variable": [
        {
          "key": "codeUsageRequestId",
          "value": ""
        }
      ]
    }
  },
  "response": [
  ]
}