Chilkat Online Tools

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

Back to Collection Items

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

Dim http As New ChilkatHttp
Dim success As Long

' 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"
' }

Dim json As New ChilkatJsonObject
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>"

Dim sbRequestBody As New ChilkatStringBuilder
success = json.EmitSb(sbRequestBody)

Dim resp As ChilkatHttpResponse
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
    Debug.Print http.LastErrorText
    Exit Sub
End If

Debug.Print resp.StatusCode
Debug.Print resp.BodyStr

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": [
  ]
}