Back to Collection Items
var
begin
CkJsonObject_UpdateString(queryParams,'module','Contacts');CkHttp_putAuthToken(http,'<access_token>');success := CkHttp_HttpParams(http,'GET','https://domain.com/crm/v2.1/settings/related_lists',queryParams,resp);
Curl Command
curl -G -d "module=Contacts"
-H "Authorization: Bearer <access_token>"
https://domain.com/crm/v2.1/settings/related_lists
Postman Collection Item JSON
{
"name": "Contacts",
"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=Contacts",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2.1",
"settings",
"related_lists"
],
"query": [
{
"key": "module",
"value": "Contacts"
}
]
},
"description": "To get the metadata of the Contacts Module."
},
"response": [
]
}