unicodeC / Microsoft Graph / Search list items with property selection
Back to Collection Items
#include <C_CkHttpW.h>
#include <C_CkJsonObjectW.h>
#include <C_CkHttpResponseW.h>
void ChilkatSample(void)
{
HCkHttpW http;
BOOL success;
HCkJsonObjectW json;
HCkHttpResponseW resp;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http = CkHttpW_Create();
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "requests": [
// {
// "entityTypes": [
// "listItem"
// ],
// "query": {
// "queryString": "issue"
// },
// "fields": [
// "id",
// "name",
// "contentclass",
// "title",
// "fooCustomProperty"
// ]
// }
// ]
// }
json = CkJsonObjectW_Create();
CkJsonObjectW_UpdateString(json,L"requests[0].entityTypes[0]",L"listItem");
CkJsonObjectW_UpdateString(json,L"requests[0].query.queryString",L"issue");
CkJsonObjectW_UpdateString(json,L"requests[0].fields[0]",L"id");
CkJsonObjectW_UpdateString(json,L"requests[0].fields[1]",L"name");
CkJsonObjectW_UpdateString(json,L"requests[0].fields[2]",L"contentclass");
CkJsonObjectW_UpdateString(json,L"requests[0].fields[3]",L"title");
CkJsonObjectW_UpdateString(json,L"requests[0].fields[4]",L"fooCustomProperty");
// Adds the "Authorization: Bearer <access_token>" header.
CkHttpW_putAuthToken(http,L"<access_token>");
CkHttpW_SetRequestHeader(http,L"Content-Type",L"application/json");
resp = CkHttpW_PostJson3(http,L"https://graph.microsoft.com/beta/search/query",L"application/json",json);
if (CkHttpW_getLastMethodSuccess(http) == FALSE) {
wprintf(L"%s\n",CkHttpW_lastErrorText(http));
CkHttpW_Dispose(http);
CkJsonObjectW_Dispose(json);
return;
}
wprintf(L"%d\n",CkHttpResponseW_getStatusCode(resp));
wprintf(L"%s\n",CkHttpResponseW_bodyStr(resp));
CkHttpResponseW_Dispose(resp);
CkHttpW_Dispose(http);
CkJsonObjectW_Dispose(json);
}
Curl Command
curl -X POST
-H "Authorization: Bearer <access_token>"
-H "Content-Type: application/json"
-d '{
"requests": [
{
"entityTypes": [
"listItem"
],
"query": {
"queryString": "issue"
},
"fields": [
"id",
"name",
"contentclass",
"title",
"fooCustomProperty"
]
}
]
}'
https://graph.microsoft.com/beta/search/query
Postman Collection Item JSON
{
"name": "Search list items with property selection",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"type": "text",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"requests\": [\n {\n \"entityTypes\": [\n \"listItem\"\n ],\n \"query\": {\n \"queryString\": \"issue\"\n },\n \"fields\": [\n \"id\",\n \"name\", \n \"contentclass\",\n \"title\",\n \"fooCustomProperty\"\n ]\n }\n ]\n}"
},
"url": {
"raw": "https://graph.microsoft.com/beta/search/query",
"protocol": "https",
"host": [
"graph",
"microsoft",
"com"
],
"path": [
"beta",
"search",
"query"
]
}
},
"response": [
]
}