curl --request POST \
--url https://api.example.com/admin/ai/image-detections/filter \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"languageID": 1,
"detectedTypeIDs": [
270,
271,
274,
305,
306,
311,
312
],
"minimumNumberDetections": 1,
"detectionDateStart": null,
"detectionDateEnd": null,
"originationDateStart": null,
"originationDateEnd": null,
"searchText": null,
"includeMasks": true,
"orderBy": null,
"fieldName": null,
"page": 1,
"pageSize": 10
}
'{
"success": true,
"data": "<unknown>"
}Gets all image detections by filter params.
curl --request POST \
--url https://api.example.com/admin/ai/image-detections/filter \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"languageID": 1,
"detectedTypeIDs": [
270,
271,
274,
305,
306,
311,
312
],
"minimumNumberDetections": 1,
"detectionDateStart": null,
"detectionDateEnd": null,
"originationDateStart": null,
"originationDateEnd": null,
"searchText": null,
"includeMasks": true,
"orderBy": null,
"fieldName": null,
"page": 1,
"pageSize": 10
}
'{
"success": true,
"data": "<unknown>"
}The access token received from the authorization server in the OAuth 2.0 flow.