> ## Documentation Index
> Fetch the complete documentation index at: https://docs-dev-docs-event-stream-action-templates.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Accept Request

> Accept a SAML authentication request to initiate a login flow.

## Endpoint

`GET /samlp/{clientId}`

Use this endpoint to accept a SAML request to initiate a login.

Optionally, you can include a `connection` parameter to log in with a specific provider. If no connection is specified, the [Auth0 Login Page](https://auth0.com/docs/authenticate/login/auth0-universal-login) will be shown.

Optionally, SP-initiated login requests can include an `organization` parameter to authenticate users in the context of an organization. To learn more, see [Organizations](https://auth0.com/docs/manage-users/organizations).

## Path Parameters

<ParamField path="clientId" type="string" required>
  Client ID of your application.
</ParamField>

## Body Parameters

<ParamField body="connection" type="string">
  Connection to use during login.
</ParamField>

<ParamField body="organization" type="string">
  Organization ID, if authenticating in the context of an organization.
</ParamField>

## Response Messages

| Status | Description                         |
| ------ | ----------------------------------- |
| 200    | Successful SAML request acceptance. |
