Replace organization JIT SSO connectors

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://openapi.logto.io/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"Logto API references MCP server": {
  "url": "https://openapi.logto.io/mcp"
}
Close
PUT /api/organizations/{id}/jit/sso-connectors

Replace all enterprise SSO connectors for just-in-time provisioning of users in the organization with the given data.

Path parameters

  • id string Required

    The unique identifier of the organization.

application/json

Body Required

  • ssoConnectorIds array[string] Required

    An array of SSO connector IDs to replace existing SSO connectors.

    Minimum length of each is 1.

Responses

  • 204

    The SSO connectors were replaced successfully.

  • 400

    Bad Request

  • 401

    Unauthorized

  • 403

    Forbidden

  • 422

    The SSO connectors could not be replaced. Some of the SSO connectors may not exist.

PUT /api/organizations/{id}/jit/sso-connectors
curl \
 --request PUT 'https://[tenant_id].logto.app/api/organizations/{id}/jit/sso-connectors' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"ssoConnectorIds":["string"]}'
Request examples
{
  "ssoConnectorIds": [
    "string"
  ]
}