Remove organization JIT email domain

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
DELETE /api/organizations/{id}/jit/email-domains/{emailDomain}

Remove an email domain for just-in-time provisioning of users in the organization.

Path parameters

  • id string Required

    The unique identifier of the organization.

  • emailDomain string Required

    The email domain to remove.

    Minimum length is 1.

Responses

  • 204

    The email domain was removed successfully.

  • 400

    Bad Request

  • 401

    Unauthorized

  • 403

    Forbidden

  • 404

    The email domain was not found.

DELETE /api/organizations/{id}/jit/email-domains/{emailDomain}
curl \
 --request DELETE 'https://[tenant_id].logto.app/api/organizations/{id}/jit/email-domains/{emailDomain}' \
 --header "Authorization: Bearer $ACCESS_TOKEN"