Back to Collection Items
#include <C_CkHttp.h>
#include <C_CkJsonObject.h>
#include <C_CkHttpResponse.h>
void ChilkatSample(void)
{
HCkHttp http;
BOOL success;
HCkJsonObject queryParams;
HCkHttpResponse resp;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http = CkHttp_Create();
queryParams = CkJsonObject_Create();
CkJsonObject_UpdateString(queryParams,"count","{{count}}");
CkJsonObject_UpdateString(queryParams,"created_from_date","{{created_from_date}}");
CkJsonObject_UpdateString(queryParams,"created_to_date","{{created_to_date}}");
CkJsonObject_UpdateString(queryParams,"folder_ids","{{folder_ids}}");
CkJsonObject_UpdateString(queryParams,"folder_types","{{folder_types}}");
CkJsonObject_UpdateString(queryParams,"from_date","{{from_date}}");
CkJsonObject_UpdateString(queryParams,"include","{{include}}");
CkJsonObject_UpdateString(queryParams,"is_download","{{is_download}}");
CkJsonObject_UpdateString(queryParams,"modified_from_date","{{modified_from_date}}");
CkJsonObject_UpdateString(queryParams,"modified_to_date","{{modified_to_date}}");
CkJsonObject_UpdateString(queryParams,"order","{{order}}");
CkJsonObject_UpdateString(queryParams,"order_by","{{order_by}}");
CkJsonObject_UpdateString(queryParams,"search_fields","{{search_fields}}");
CkJsonObject_UpdateString(queryParams,"search_text","{{search_text}}");
CkJsonObject_UpdateString(queryParams,"shared_by_me","{{shared_by_me}}");
CkJsonObject_UpdateString(queryParams,"start_position","{{start_position}}");
CkJsonObject_UpdateString(queryParams,"template_ids","{{template_ids}}");
CkJsonObject_UpdateString(queryParams,"to_date","{{to_date}}");
CkJsonObject_UpdateString(queryParams,"used_from_date","{{used_from_date}}");
CkJsonObject_UpdateString(queryParams,"used_to_date","{{used_to_date}}");
CkJsonObject_UpdateString(queryParams,"user_filter","{{user_filter}}");
CkJsonObject_UpdateString(queryParams,"user_id","{{user_id}}");
// Adds the "Authorization: Bearer {{accessToken}}" header.
CkHttp_putAuthToken(http,"{{accessToken}}");
CkHttp_SetRequestHeader(http,"Accept","application/json");
resp = CkHttp_QuickRequestParams(http,"GET","https://domain.com/v2.1/accounts/{{accountId}}/templates",queryParams);
if (CkHttp_getLastMethodSuccess(http) == FALSE) {
printf("%s\n",CkHttp_lastErrorText(http));
CkHttp_Dispose(http);
CkJsonObject_Dispose(queryParams);
return;
}
printf("%d\n",CkHttpResponse_getStatusCode(resp));
printf("%s\n",CkHttpResponse_bodyStr(resp));
CkHttpResponse_Dispose(resp);
CkHttp_Dispose(http);
CkJsonObject_Dispose(queryParams);
}
Curl Command
curl -G -d "count=%7B%7Bcount%7D%7D"
-d "created_from_date=%7B%7Bcreated_from_date%7D%7D"
-d "created_to_date=%7B%7Bcreated_to_date%7D%7D"
-d "folder_ids=%7B%7Bfolder_ids%7D%7D"
-d "folder_types=%7B%7Bfolder_types%7D%7D"
-d "from_date=%7B%7Bfrom_date%7D%7D"
-d "include=%7B%7Binclude%7D%7D"
-d "is_download=%7B%7Bis_download%7D%7D"
-d "modified_from_date=%7B%7Bmodified_from_date%7D%7D"
-d "modified_to_date=%7B%7Bmodified_to_date%7D%7D"
-d "order=%7B%7Border%7D%7D"
-d "order_by=%7B%7Border_by%7D%7D"
-d "search_fields=%7B%7Bsearch_fields%7D%7D"
-d "search_text=%7B%7Bsearch_text%7D%7D"
-d "shared_by_me=%7B%7Bshared_by_me%7D%7D"
-d "start_position=%7B%7Bstart_position%7D%7D"
-d "template_ids=%7B%7Btemplate_ids%7D%7D"
-d "to_date=%7B%7Bto_date%7D%7D"
-d "used_from_date=%7B%7Bused_from_date%7D%7D"
-d "used_to_date=%7B%7Bused_to_date%7D%7D"
-d "user_filter=%7B%7Buser_filter%7D%7D"
-d "user_id=%7B%7Buser_id%7D%7D"
-H "Accept: application/json"
-H "Authorization: Bearer {{accessToken}}"
https://domain.com/v2.1/accounts/{{accountId}}/templates
Postman Collection Item JSON
{
"name": "Gets the definition of a template.",
"request": {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Bearer {{accessToken}}"
}
],
"url": {
"raw": "{{baseUrl}}/v2.1/accounts/{{accountId}}/templates?count={{count}}&created_from_date={{created_from_date}}&created_to_date={{created_to_date}}&folder_ids={{folder_ids}}&folder_types={{folder_types}}&from_date={{from_date}}&include={{include}}&is_download={{is_download}}&modified_from_date={{modified_from_date}}&modified_to_date={{modified_to_date}}&order={{order}}&order_by={{order_by}}&search_fields={{search_fields}}&search_text={{search_text}}&shared_by_me={{shared_by_me}}&start_position={{start_position}}&template_ids={{template_ids}}&to_date={{to_date}}&used_from_date={{used_from_date}}&used_to_date={{used_to_date}}&user_filter={{user_filter}}&user_id={{user_id}}",
"host": [
"{{baseUrl}}"
],
"path": [
"v2.1",
"accounts",
"{{accountId}}",
"templates"
],
"query": [
{
"key": "count",
"value": "{{count}}"
},
{
"key": "created_from_date",
"value": "{{created_from_date}}"
},
{
"key": "created_to_date",
"value": "{{created_to_date}}"
},
{
"key": "folder_ids",
"value": "{{folder_ids}}"
},
{
"key": "folder_types",
"value": "{{folder_types}}"
},
{
"key": "from_date",
"value": "{{from_date}}"
},
{
"key": "include",
"value": "{{include}}"
},
{
"key": "is_download",
"value": "{{is_download}}"
},
{
"key": "modified_from_date",
"value": "{{modified_from_date}}"
},
{
"key": "modified_to_date",
"value": "{{modified_to_date}}"
},
{
"key": "order",
"value": "{{order}}"
},
{
"key": "order_by",
"value": "{{order_by}}"
},
{
"key": "search_fields",
"value": "{{search_fields}}"
},
{
"key": "search_text",
"value": "{{search_text}}"
},
{
"key": "shared_by_me",
"value": "{{shared_by_me}}"
},
{
"key": "start_position",
"value": "{{start_position}}"
},
{
"key": "template_ids",
"value": "{{template_ids}}"
},
{
"key": "to_date",
"value": "{{to_date}}"
},
{
"key": "used_from_date",
"value": "{{used_from_date}}"
},
{
"key": "used_to_date",
"value": "{{used_to_date}}"
},
{
"key": "user_filter",
"value": "{{user_filter}}"
},
{
"key": "user_id",
"value": "{{user_id}}"
}
],
"variable": [
{
"key": "accountId",
"value": "{{accountId}}",
"type": "string"
}
]
},
"description": "Retrieves the list of templates for the specified account. The request can be limited to a specific folder."
},
"response": [
]
}