Chilkat Online Tools

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

Back to Collection Items

import com.chilkatsoft.*;

public class ChilkatExample {

  static {
    try {
        System.loadLibrary("chilkat");
    } catch (UnsatisfiedLinkError e) {
      System.err.println("Native code library failed to load.\n" + e);
      System.exit(1);
    }
  }

  public static void main(String argv[])
  {
    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    CkHttp http = new CkHttp();
    boolean 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"
    // }

    CkJsonObject json = new CkJsonObject();
    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.put_AuthToken("<access_token>");

    CkStringBuilder sbRequestBody = new CkStringBuilder();
    json.EmitSb(sbRequestBody);

    CkHttpResponse resp = http.PTextSb("PUT","https://domain.com/api/v1.0/codetypes/requests/codes/:codeUsageRequestId",sbRequestBody,"utf-8","application/json",false,false);
    if (http.get_LastMethodSuccess() == false) {
        System.out.println(http.lastErrorText());
        return;
        }

    System.out.println(resp.get_StatusCode());
    System.out.println(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": [
  ]
}