Assign Cohort Students

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://docs.connect.century.tech/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"Connect API MCP server": {
  "url": "https://docs.connect.century.tech/mcp"
}
Close
POST /smart-ia/cohorts/{cohortId}/students

Assign students to a Smart IA Cohort

Path parameters

  • cohortId string(uuid) Required

    Cohort UUID.

application/json

Body Required

  • userIds array[string(uuid)] Required

    The list of user IDs.

Responses

  • 204

    Students assigned successfully.

  • 400

    Invalid request.

  • 401

    Invalid authentication credentials

  • 403

    Not authorised to access this resource

  • 404

    Cohort not found.

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