Skip to main content
POST
/
admin
/
ai
/
models
/
filter
Gets the list of all AI Model types
curl --request POST \
  --url https://api.example.com/admin/ai/models/filter \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "aiPlatformIDs": [
    123
  ],
  "aiModelTypeIDs": [
    123
  ],
  "authorIserIDs": [
    123
  ],
  "aiModelUsageTypeIDs": [
    123
  ],
  "fieldName": null,
  "orderBy": null,
  "languageID": 1,
  "isFeatured": null,
  "page": 1,
  "pageSize": 10,
  "searchText": null
}
'
{
  "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
aiPlatformIDs
integer<int32>[] | null
aiModelTypeIDs
integer<int32>[] | null
authorIserIDs
integer<int32>[] | null
aiModelUsageTypeIDs
integer<int32>[] | null
fieldName
string | null
orderBy
string | null
languageID
integer<int32> | null
default:1
page
integer<int32>
default:1
pageSize
integer<int32>
default:10
searchText
string | null

Response

Success

success
boolean
data
unknown