> ## Documentation Index
> Fetch the complete documentation index at: https://developers.partoo.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Configure your Identity Provider

> Set up a Partoo application in your Identity Provider using SAML or OIDC

<Steps>
  <Step title="Create a Partoo application in your Identity Provider">
    Use the configuration values provided in the Partoo app’s SSO setup page.

    <Tabs>
      <Tab title="SAML">
        * **ACS URL**: `https://app.partoo.co/api/v2/saml/{identifier}/acs`
        * **Entity ID**: `https://app.partoo.co/api/v2/saml/{identifier}/metadata/`
        * **Attribute mapping**: `email` or `urn:oid:0.9.2342.19200300.100.1.3`
        * \[Optional] Allowed callback URL: same as ACS URL
      </Tab>

      <Tab title="OIDC">
        * **Redirect URL**: `https://app.partoo.co/connection?sso_alias={identifier}`
      </Tab>
    </Tabs>

    <Info>
      Replace `{identifier}` with the unique ID provided in the SSO configuration page — it could be a UUID or a custom name.
    </Info>
  </Step>

  <Step title="Retrieve metadata or configuration URL">
    Depending on your protocol, export your Identity Provider’s configuration:

    * For **SAML**: Export the XML metadata file.
    * For **OIDC**: Copy the `.well-known` URL.
  </Step>
</Steps>
