Bulk soft-delete multiple aimodels
curl --request POST \
--url https://pria.praxislxp.com/api/admin/aimodels/bulk-delete \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"ids": [
"<string>"
]
}
'{
"success": true,
"deleted": 123,
"skipped": [
{
"id": "<string>",
"reason": "<string>"
}
]
}Admin AI Models
Bulk soft-delete multiple aimodels
Soft-deletes many aimodels by id (status set to deleted; name freed). Each target is authorized per-record (aimodels.delete RAP on its institution). Returns the number deleted plus a per-id skip list.
POST
/
api
/
admin
/
aimodels
/
bulk-delete
Bulk soft-delete multiple aimodels
curl --request POST \
--url https://pria.praxislxp.com/api/admin/aimodels/bulk-delete \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"ids": [
"<string>"
]
}
'{
"success": true,
"deleted": 123,
"skipped": [
{
"id": "<string>",
"reason": "<string>"
}
]
}Was this page helpful?
⌘I