Back to Collection Items
#include <C_CkHttpW.h>
#include <C_CkJsonObjectW.h>
#include <C_CkHttpResponseW.h>
void ChilkatSample(void)
{
HCkHttpW http;
BOOL success;
HCkJsonObjectW queryParams;
HCkHttpResponseW resp;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http = CkHttpW_Create();
queryParams = CkJsonObjectW_Create();
CkJsonObjectW_UpdateString(queryParams,L"search",L"{{search_text}}");
// Adds the "Authorization: Bearer {{token}}" header.
CkHttpW_putAuthToken(http,L"{{token}}");
CkHttpW_SetRequestHeader(http,L"Content-Type",L"application/json");
resp = CkHttpW_QuickRequestParams(http,L"GET",L"https://domain.com/exchange/api/v1/assets",queryParams);
if (CkHttpW_getLastMethodSuccess(http) == FALSE) {
wprintf(L"%s\n",CkHttpW_lastErrorText(http));
CkHttpW_Dispose(http);
CkJsonObjectW_Dispose(queryParams);
return;
}
wprintf(L"%d\n",CkHttpResponseW_getStatusCode(resp));
wprintf(L"%s\n",CkHttpResponseW_bodyStr(resp));
CkHttpResponseW_Dispose(resp);
CkHttpW_Dispose(http);
CkJsonObjectW_Dispose(queryParams);
}
Curl Command
curl -G -d "search=%7B%7Bsearch_text%7D%7D"
-H "Authorization: Bearer {{token}}"
-H "Content-Type: application/json"
https://domain.com/exchange/api/v1/assets
Postman Collection Item JSON
{
"name": "Search assets by text",
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{token}}"
},
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{url}}/exchange/api/v1/assets?search={{search_text}}",
"host": [
"{{url}}"
],
"path": [
"exchange",
"api",
"v1",
"assets"
],
"query": [
{
"key": "search",
"value": "{{search_text}}"
}
]
},
"description": "Generated from a curl request: \ncurl -X POST -H \\\"Authorization: Bearer d4677804-dab3-445a-9792-54de530ef345\\\" -H \\\"Content-Type: application/json\\\" -d '{\n \\\"displayName\\\": “Custom_Field_Test”,\n \\\"tagKey\\\": “Tag_Key_Test”,\n \\\"dataType\\\": \\\"text\\\",\n \\\"assetTypeRestrictions\\\": []\n}\n' \\\"https://anypoint.mulesoft.com/exchange/api/v1/organizations/59995d29-ebe2-43d9-a52b-766683fd41a7/fields\\\""
},
"response": [
]
}