Remove Cohort Tests

DELETE /smart-ia/cohorts/{cohortId}/tests

Remove Smart IA Tests from a Cohort

Path parameters

application/json

Body Required

  • testIds array[string(uuid)] Required

    The list of Smart IA Test IDs.

Responses

  • Tests removed successfully.

  • Invalid request.

  • Invalid authentication credentials

  • Not authorised to access this resource

  • Cohort not found.

DELETE /smart-ia/cohorts/{cohortId}/tests
curl \
 --request DELETE 'https://connect.century.tech/api/v1/smart-ia/cohorts/c334f818-0281-4f47-855a-3a3d0e356cfd/tests' \
 --header "x-api-key: $API_KEY" \
 --header "Content-Type: application/json" \
 --data '{"testIds":["string"]}'
Request examples
{
  "testIds": [
    "string"
  ]
}