DataFlex / Microsoft Graph / Search list items with property selection
Back to Collection Items
Use ChilkatAx-win32.pkg
Procedure Test
Handle hoHttp
Boolean iSuccess
Variant vJson
Handle hoJson
Variant vResp
Handle hoResp
String sTemp1
Integer iTemp1
Boolean bTemp1
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
Get Create (RefClass(cComChilkatHttp)) To hoHttp
If (Not(IsComObjectCreated(hoHttp))) Begin
Send CreateComObject of hoHttp
End
// 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"
// ]
// }
// ]
// }
Get Create (RefClass(cComChilkatJsonObject)) To hoJson
If (Not(IsComObjectCreated(hoJson))) Begin
Send CreateComObject of hoJson
End
Get ComUpdateString Of hoJson "requests[0].entityTypes[0]" "listItem" To iSuccess
Get ComUpdateString Of hoJson "requests[0].query.queryString" "issue" To iSuccess
Get ComUpdateString Of hoJson "requests[0].fields[0]" "id" To iSuccess
Get ComUpdateString Of hoJson "requests[0].fields[1]" "name" To iSuccess
Get ComUpdateString Of hoJson "requests[0].fields[2]" "contentclass" To iSuccess
Get ComUpdateString Of hoJson "requests[0].fields[3]" "title" To iSuccess
Get ComUpdateString Of hoJson "requests[0].fields[4]" "fooCustomProperty" To iSuccess
// Adds the "Authorization: Bearer <access_token>" header.
Set ComAuthToken Of hoHttp To "<access_token>"
Send ComSetRequestHeader To hoHttp "Content-Type" "application/json"
Get pvComObject of hoJson to vJson
Get ComPostJson3 Of hoHttp "https://graph.microsoft.com/beta/search/query" "application/json" vJson To vResp
If (IsComObject(vResp)) Begin
Get Create (RefClass(cComChilkatHttpResponse)) To hoResp
Set pvComObject Of hoResp To vResp
End
Get ComLastMethodSuccess Of hoHttp To bTemp1
If (bTemp1 = False) Begin
Get ComLastErrorText Of hoHttp To sTemp1
Showln sTemp1
Procedure_Return
End
Get ComStatusCode Of hoResp To iTemp1
Showln iTemp1
Get ComBodyStr Of hoResp To sTemp1
Showln sTemp1
Send Destroy of hoResp
End_Procedure
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": [
]
}