Add organization JIT SSO connectors

POST /api/organizations/{id}/jit/sso-connectors

Add new enterprise SSO connectors for just-in-time provisioning of users in the organization.

Path parameters

  • id string Required

    The unique identifier of the organization.

application/json

Body Required

  • ssoConnectorIds array[string] Required

    The SSO connector IDs to add.

    Minimum length of each is 1.

Responses

  • 201 application/json

    The SSO connectors were added successfully.

  • Bad Request

  • Unauthorized

  • Forbidden

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

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