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.
// {
// "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"
// }
CkoJsonObject *json = [[CkoJsonObject alloc] init];
[json UpdateString: @"itemCode" value: @"EG-113317713-ABCD"];
[json UpdateString: @"codeName" value: @"ABCD Updated"];
[json UpdateString: @"codeNameAr" value: @"ABCD Updated Arabic"];
[json UpdateString: @"activeFrom" value: @"2021-04-06T00:00:00Z"];
[json UpdateString: @"activeTo" value: @"2021-06-30T23:59:59Z"];
[json UpdateString: @"description" value: @"Description of code 123"];
[json UpdateString: @"descriptionAr" value: @" 2314 وصف الكود بالعربي"];
[json UpdateString: @"parentCode" value: @"10000051"];
[json UpdateString: @"requestReason" value: @"Request reason text Updated"];
[json UpdateString: @"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>";
CkoStringBuilder *sbRequestBody = [[CkoStringBuilder alloc] init];
[json EmitSb: sbRequestBody];
CkoHttpResponse *resp = [http PTextSb: @"PUT" url: @"https://domain.com/api/v1.0/codetypes/requests/codes/:codeUsageRequestId" 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 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": [
]
}