Enable User

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 /users/{userId}/enable

Enables an user account.

Path parameters

  • userId string(uuid) Required

    User UUID.

Responses

  • 204

    User enabled successfully.

  • 400

    Invalid request.

  • 401

    Invalid authentication credentials

  • 403

    Not authorised to access this resource

  • 404

    User not found.

POST /users/{userId}/enable
curl \
 --request POST 'https://connect.century.tech/api/v1/users/68f06c66-702a-4c26-b8c5-b6dc4f81f25d/enable' \
 --header "x-api-key: $API_KEY"