Chilkat Online Tools

Objective-C / Egyptian eInvoicing SDK R1.5 / 6. Create EGS Code Usage

Back to Collection Items

#import <CkoHttp.h>
#import <CkoJsonObject.h>
#import <CkoHttpResponse.h>

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

CkoHttp *http = [[CkoHttp alloc] init];
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.

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

CkoJsonObject *json = [[CkoJsonObject alloc] init];
[json UpdateString: @"items[0].codeType" value: @"EGS"];
[json UpdateString: @"items[0].parentCode" value: @"10000051"];
[json UpdateString: @"items[0].itemCode" value: @"EG-113317713-5598542"];
[json UpdateString: @"items[0].codeName" value: @"Test Code"];
[json UpdateString: @"items[0].codeNameAr" value: @" "];
[json UpdateString: @"items[0].activeFrom" value: @"2021-02-20T00:00:00.000"];
[json UpdateString: @"items[0].activeTo" value: @"2021-04-22T00:00:00.000"];
[json UpdateString: @"items[0].description" value: @"Description of code"];
[json UpdateString: @"items[0].descriptionAr" value: @"  "];
[json UpdateString: @"items[0].requestReason" value: @"Request reason text"];
[json UpdateString: @"items[1].codeType" value: @"EGS"];
[json UpdateString: @"items[1].parentCode" value: @"10000051"];
[json UpdateString: @"items[1].itemCode" value: @"EG-113317713-5598543"];
[json UpdateString: @"items[1].codeName" value: @"Test Code 1"];
[json UpdateString: @"items[1].codeNameAr" value: @"1  "];
[json UpdateString: @"items[1].activeFrom" value: @"2021-02-20T00:00:00.000"];
[json UpdateString: @"items[1].activeTo" value: @"2021-04-22T00:00:00.000"];
[json UpdateString: @"items[1].description" value: @"Description of code 1"];
[json UpdateString: @"items[1].descriptionAr" value: @" 1   "];
[json UpdateString: @"items[1].requestReason" value: @"Request reason text"];

// Adds the "Authorization: Bearer <access_token>" header.
http.AuthToken = @"<access_token>";

CkoHttpResponse *resp = [http PostJson3: @"https://domain.com/api/v1.0/codetypes/requests/codes" contentType: @"application/json" json: json];
if (http.LastMethodSuccess == NO) {
    NSLog(@"%@",http.LastErrorText);
    return;
}

NSLog(@"%d",[resp.StatusCode intValue]);
NSLog(@"%@",resp.BodyStr);

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