Delete IdP initiated auth config

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/sso-connectors/{id}/idp-initiated-auth-config

Delete the IdP initiated authentication config of the given SAML SSO connector.

Path parameters

  • id string Required

    The unique identifier of the sso connector.

Responses

  • 204

    The IdP initiated auth config has been deleted.

  • 400

    Bad Request

  • 401

    Unauthorized

  • 403

    Forbidden

  • 404

    IdP initiated auth config not found for the given SSO connector.

DELETE /api/sso-connectors/{id}/idp-initiated-auth-config
curl \
 --request DELETE 'https://[tenant_id].logto.app/api/sso-connectors/{id}/idp-initiated-auth-config' \
 --header "Authorization: Bearer $ACCESS_TOKEN"