Back to Collection Items
var
begin
CkJsonObject_UpdateString(queryParams,'module','Vendors');CkHttp_putAuthToken(http,'<access_token>');success := CkHttp_HttpParams(http,'GET','https://domain.com/crm/v2.1/settings/custom_views',queryParams,resp);
Curl Command
curl -G -d "module=Vendors"
-H "Authorization: Bearer <access_token>"
https://domain.com/crm/v2.1/settings/custom_views
Postman Collection Item JSON
{
"name": "Vendors",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{access-token}}",
"type": "string"
}
]
},
"method": "GET",
"header": [
],
"url": {
"raw": "{{api-domain}}/crm/v2.1/settings/custom_views?module=Vendors",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2.1",
"settings",
"custom_views"
],
"query": [
{
"key": "module",
"value": "Vendors"
}
]
},
"description": "To get the metadata of the Vendors module."
},
"response": [
]
}