Chilkat Online Tools

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

Back to Collection Items

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

    let http = CkoHttp()!
    var success: Bool

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

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

    http.setRequestHeader("Content-Type", value: "application/json")
    http.setRequestHeader("Accept-Language", value: "en")
    // Adds the "Authorization: Bearer <access_token>" header.
    http.authToken = "<access_token>"

    let sbRequestBody = CkoStringBuilder()!
    json.emitSb(sbRequestBody)

    var resp: CkoHttpResponse? = http.pTextSb("PUT", url: "https://domain.com/api/v1.0/codetypes/requests/codes/:codeUsageRequestId", textData: sbRequestBody, charset: "utf-8", contentType: "application/json", md5: false, gzip: false)
    if http.lastMethodSuccess == false {
        print("\(http.lastErrorText!)")
        return
    }

    print("\(resp!.statusCode.intValue)")
    print("\(resp!.bodyStr!)")
    resp = nil

}

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