Chilkat Online Tools

PowerBuilder / Egyptian eInvoicing SDK R1.5 / 6. Create EGS Code Usage

Back to Collection Items

integer li_rc
oleobject loo_Http
integer li_Success
oleobject loo_Json
oleobject loo_Resp

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

loo_Http = create oleobject
li_rc = loo_Http.ConnectToNewObject("Chilkat_9_5_0.Http")
if li_rc < 0 then
    destroy loo_Http
    MessageBox("Error","Connecting to COM object failed")
    return
end if

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

// The following JSON is sent in the request body.

// {
//   "items": [
//     {
//       "codeType": "EGS",
//       "parentCode": "10000051",
//       "itemCode": "EG-113317713-5598542",
//       "codeName": "Test Code",
//       "codeNameAr": " ",
//       "activeFrom": "2021-02-20T00:00:00.000",
//       "activeTo": "2021-04-22T00:00:00.000",
//       "description": "Description of code",
//       "descriptionAr": "  ",
//       "requestReason": "Request reason text"
//     },
//     {
//       "codeType": "EGS",
//       "parentCode": "10000051",
//       "itemCode": "EG-113317713-5598543",
//       "codeName": "Test Code 1",
//       "codeNameAr": "1  ",
//       "activeFrom": "2021-02-20T00:00:00.000",
//       "activeTo": "2021-04-22T00:00:00.000",
//       "description": "Description of code 1",
//       "descriptionAr": " 1   ",
//       "requestReason": "Request reason text"
//     }
//   ]
// }

loo_Json = create oleobject
li_rc = loo_Json.ConnectToNewObject("Chilkat_9_5_0.JsonObject")

loo_Json.UpdateString("items[0].codeType","EGS")
loo_Json.UpdateString("items[0].parentCode","10000051")
loo_Json.UpdateString("items[0].itemCode","EG-113317713-5598542")
loo_Json.UpdateString("items[0].codeName","Test Code")
loo_Json.UpdateString("items[0].codeNameAr"," ")
loo_Json.UpdateString("items[0].activeFrom","2021-02-20T00:00:00.000")
loo_Json.UpdateString("items[0].activeTo","2021-04-22T00:00:00.000")
loo_Json.UpdateString("items[0].description","Description of code")
loo_Json.UpdateString("items[0].descriptionAr","  ")
loo_Json.UpdateString("items[0].requestReason","Request reason text")
loo_Json.UpdateString("items[1].codeType","EGS")
loo_Json.UpdateString("items[1].parentCode","10000051")
loo_Json.UpdateString("items[1].itemCode","EG-113317713-5598543")
loo_Json.UpdateString("items[1].codeName","Test Code 1")
loo_Json.UpdateString("items[1].codeNameAr","1  ")
loo_Json.UpdateString("items[1].activeFrom","2021-02-20T00:00:00.000")
loo_Json.UpdateString("items[1].activeTo","2021-04-22T00:00:00.000")
loo_Json.UpdateString("items[1].description","Description of code 1")
loo_Json.UpdateString("items[1].descriptionAr"," 1   ")
loo_Json.UpdateString("items[1].requestReason","Request reason text")

// Adds the "Authorization: Bearer <access_token>" header.
loo_Http.AuthToken = "<access_token>"

loo_Resp = loo_Http.PostJson3("https://domain.com/api/v1.0/codetypes/requests/codes","application/json",loo_Json)
if loo_Http.LastMethodSuccess = 0 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_Http
    destroy loo_Json
    return
end if

Write-Debug string(loo_Resp.StatusCode)
Write-Debug loo_Resp.BodyStr
destroy loo_Resp


destroy loo_Http
destroy loo_Json

Curl Command

curl -X POST
	-H "Authorization: Bearer <access_token>"
	-d '{
    "items": [
        {
            "codeType": "EGS",
            "parentCode": "10000051",
            "itemCode": "EG-113317713-5598542",
            "codeName": "Test Code",
            "codeNameAr": "كود تجريبي",
            "activeFrom": "2021-02-20T00:00:00.000",
            "activeTo": "2021-04-22T00:00:00.000",
            "description": "Description of code",
            "descriptionAr": "وصف الكود بالعربي",
            "requestReason": "Request reason text"
        },
        {
            "codeType": "EGS",
            "parentCode": "10000051",
            "itemCode": "EG-113317713-5598543",
            "codeName": "Test Code 1",
            "codeNameAr": "1 كود تجريبي",
            "activeFrom": "2021-02-20T00:00:00.000",
            "activeTo": "2021-04-22T00:00:00.000",
            "description": "Description of code 1",
            "descriptionAr": " 1 وصف الكود بالعربي",
            "requestReason": "Request reason text"
        }
    ]
}'
https://domain.com/api/v1.0/codetypes/requests/codes

Postman Collection Item JSON

{
  "name": "6. Create EGS Code Usage",
  "request": {
    "auth": {
      "type": "bearer",
      "bearer": [
        {
          "key": "token",
          "value": "{{generatedAccessToken}}",
          "type": "string"
        }
      ]
    },
    "method": "POST",
    "header": [
    ],
    "body": {
      "mode": "raw",
      "raw": "{\r\n    \"items\": [\r\n        {\r\n            \"codeType\": \"EGS\",\r\n            \"parentCode\": \"10000051\",\r\n            \"itemCode\": \"EG-113317713-5598542\",\r\n            \"codeName\": \"Test Code\",\r\n            \"codeNameAr\": \"كود تجريبي\",\r\n            \"activeFrom\": \"2021-02-20T00:00:00.000\",\r\n            \"activeTo\": \"2021-04-22T00:00:00.000\",\r\n            \"description\": \"Description of code\",\r\n            \"descriptionAr\": \"وصف الكود بالعربي\",\r\n            \"requestReason\": \"Request reason text\"\r\n        },\r\n        {\r\n            \"codeType\": \"EGS\",\r\n            \"parentCode\": \"10000051\",\r\n            \"itemCode\": \"EG-113317713-5598543\",\r\n            \"codeName\": \"Test Code 1\",\r\n            \"codeNameAr\": \"1 كود تجريبي\",\r\n            \"activeFrom\": \"2021-02-20T00:00:00.000\",\r\n            \"activeTo\": \"2021-04-22T00:00:00.000\",\r\n            \"description\": \"Description of code 1\",\r\n            \"descriptionAr\": \" 1 وصف الكود بالعربي\",\r\n            \"requestReason\": \"Request reason text\"\r\n        }\r\n    ]\r\n}",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{apiBaseUrl}}/api/v1.0/codetypes/requests/codes",
      "host": [
        "{{apiBaseUrl}}"
      ],
      "path": [
        "api",
        "v1.0",
        "codetypes",
        "requests",
        "codes"
      ]
    }
  },
  "response": [
  ]
}