Skip to main content
POST
/
admin
/
ai
/
image-detections
/
filter
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>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json
languageID
integer<int32>
default:1
detectedTypeIDs
integer<int32>[] | null
minimumNumberDetections
integer<int32>
default:1
detectionDateStart
string<date-time> | null
detectionDateEnd
string<date-time> | null
originationDateStart
string<date-time> | null
originationDateEnd
string<date-time> | null
searchText
string | null
includeMasks
boolean | null
default:true
orderBy
string | null
fieldName
string | null
page
integer<int32>
default:1
pageSize
integer<int32>
default:10

Response

Success

success
boolean
data
unknown