Chilkat Online Tools

C# / 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.

Chilkat.Http http = new Chilkat.Http();
bool success;

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

Chilkat.JsonObject json = new Chilkat.JsonObject();
json.UpdateString("itemCode","EG-113317713-ABCD");
json.UpdateString("codeName","ABCD Updated");
json.UpdateString("codeNameAr","ABCD Updated Arabic");
json.UpdateString("activeFrom","2021-04-06T00:00:00Z");
json.UpdateString("activeTo","2021-06-30T23:59:59Z");
json.UpdateString("description","Description of code 123");
json.UpdateString("descriptionAr"," 2314   ");
json.UpdateString("parentCode","10000051");
json.UpdateString("requestReason","Request reason text Updated");
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>";

Chilkat.StringBuilder sbRequestBody = new Chilkat.StringBuilder();
json.EmitSb(sbRequestBody);

Chilkat.HttpResponse resp = http.PTextSb("PUT","https://domain.com/api/v1.0/codetypes/requests/codes/:codeUsageRequestId",sbRequestBody,"utf-8","application/json",false,false);
if (http.LastMethodSuccess == false) {
    Debug.WriteLine(http.LastErrorText);
    return;
}

Debug.WriteLine(Convert.ToString(resp.StatusCode));
Debug.WriteLine(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": [
  ]
}