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>"
}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>"
}The access token received from the authorization server in the OAuth 2.0 flow.