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;
CkoJsonObject *queryParams = [[CkoJsonObject alloc] init];
[queryParams UpdateString: @"module" value: @"Invoices"];
// Adds the "Authorization: Bearer <access_token>" header.
http.AuthToken = @"<access_token>";
CkoHttpResponse *resp = [http QuickRequestParams: @"GET" url: @"https://domain.com/crm/v2.1/settings/related_lists" json: queryParams];
if (http.LastMethodSuccess == NO) {
NSLog(@"%@",http.LastErrorText);
return;
}
NSLog(@"%d",[resp.StatusCode intValue]);
NSLog(@"%@",resp.BodyStr);
Curl Command
curl -G -d "module=Invoices"
-H "Authorization: Bearer <access_token>"
https://domain.com/crm/v2.1/settings/related_lists
Postman Collection Item JSON
{
"name": "Invoices",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{access-token}}",
"type": "string"
}
]
},
"method": "GET",
"header": [
],
"url": {
"raw": "{{api-domain}}/crm/v2.1/settings/related_lists?module=Invoices",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2.1",
"settings",
"related_lists"
],
"query": [
{
"key": "module",
"value": "Invoices"
}
]
},
"description": "To get the metadata of the Invoices module."
},
"response": [
]
}