Chilkat Online Tools

Objective-C / Egyptian eInvoicing SDK R1.5 / 2. Get Document Types

Back to Collection Items

#import <CkoHttp.h>
#import <CkoJsonObject.h>
#import <CkoStringBuilder.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.

// {
//   "documentTypeCodeName": "creditupdated",
//   "namePrimaryLang": "CreditEn",
//   "nameSecondaryLang": "CreditAr",
//   "descriptionPrimaryLang": "Des-creditEn",
//   "descriptionSecondaryLang": "Des-creditAr",
//   "activeFrom": "2020-06-09T07:38:54.836Z"
// }

CkoJsonObject *json = [[CkoJsonObject alloc] init];
[json UpdateString: @"documentTypeCodeName" value: @"creditupdated"];
[json UpdateString: @"namePrimaryLang" value: @"CreditEn"];
[json UpdateString: @"nameSecondaryLang" value: @"CreditAr"];
[json UpdateString: @"descriptionPrimaryLang" value: @"Des-creditEn"];
[json UpdateString: @"descriptionSecondaryLang" value: @"Des-creditAr"];
[json UpdateString: @"activeFrom" value: @"2020-06-09T07:38:54.836Z"];

// Adds the "Authorization: Bearer <access_token>" header.
http.AuthToken = @"<access_token>";
[http SetRequestHeader: @"Accept-Language" value: @"ar"];

CkoStringBuilder *sbRequestBody = [[CkoStringBuilder alloc] init];
[json EmitSb: sbRequestBody];

CkoHttpResponse *resp = [http PTextSb: @"GET" url: @"https://domain.com/api/v1/documenttypes" textData: sbRequestBody charset: @"utf-8" contentType: @"application/json" md5: NO gzip: NO];
if (http.LastMethodSuccess == NO) {
    NSLog(@"%@",http.LastErrorText);
    return;
}

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

Curl Command

curl -X GET
	-H "Authorization: Bearer <access_token>"
	-H "Accept-Language: ar"
	-d '{
    "documentTypeCodeName": "creditupdated",
    "namePrimaryLang": "CreditEn",
    "nameSecondaryLang": "CreditAr",
    "descriptionPrimaryLang": "Des-creditEn",
    "descriptionSecondaryLang": "Des-creditAr",
    "activeFrom": "2020-06-09T07:38:54.836Z"
}'
https://domain.com/api/v1/documenttypes

Postman Collection Item JSON

{
  "name": "2. Get Document Types",
  "protocolProfileBehavior": {
    "disableBodyPruning": true
  },
  "request": {
    "auth": {
      "type": "bearer",
      "bearer": [
        {
          "key": "token",
          "value": "{{generatedAccessToken}}",
          "type": "string"
        }
      ]
    },
    "method": "GET",
    "header": [
      {
        "key": "Accept-Language",
        "value": "ar",
        "type": "text"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\r\n    \"documentTypeCodeName\": \"creditupdated\",\r\n    \"namePrimaryLang\": \"CreditEn\",\r\n    \"nameSecondaryLang\": \"CreditAr\",\r\n    \"descriptionPrimaryLang\": \"Des-creditEn\",\r\n    \"descriptionSecondaryLang\": \"Des-creditAr\",\r\n    \"activeFrom\": \"2020-06-09T07:38:54.836Z\"\r\n}",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{apiBaseUrl}}/api/v1/documenttypes",
      "host": [
        "{{apiBaseUrl}}"
      ],
      "path": [
        "api",
        "v1",
        "documenttypes"
      ]
    }
  },
  "response": [
  ]
}