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

# Recruitee Partner API Integration

> Learn how to set up and use the Recruitee Partner API integration with StackOne

export const DifferenceBetweenPublicAndPartnerAPI = ({showPublic = true, showPartner = true, showPublicPartner = true, title = "Difference between Public API & Partner API"}) => {
  return <>
            <Accordion title={title}>
                <ul className="custom-list-accordion">
                    {showPublic && <li><b>Public API:</b> Access to the StackOne Unified APIs, excluding the Assessments and Background Checks Unified API and its features.</li>}

                    {showPartner && <li><b>Partner API:</b> Access to the Assessments and Background Checks Unified API and its features, but not other StackOne Unified APIs. This allows you to integrate your provider's partner app with StackOne.</li>}

                    {showPublicPartner && <li><b>Public + Partner API:</b> Access to all StackOne Unified APIs, including the Assessments and Background Checks Unified API and its features.</li>}
                </ul>
            </Accordion>
        </>;
};

## Overview

This guide provides step-by-step instructions for setting up and using the Recruitee Partner API integration with StackOne.
It covers how to request and activate the integration, configure settings within StackOne, connect your Recruitee integration,
and how users can access and utilise your integration’s features.

## Partner Requirements

<Warning>
  A partnership with Recruitee is required to proceed with this documentation.
</Warning>

To become a Marketplace Technology Partner of Recruitee, navigate to [Marketplace integrations](https://support.recruitee.com/en/collections/2544984-marketplace-integrations).
Click on [Become a Marketplace Technology Partner](https://support.recruitee.com/en/articles/5907305-become-a-marketplace-technology-partner), then click on `Technology partnership request` to request a partnership with Recruitee.

<Frame>
  <img src="https://mintcdn.com/stackone-60/vTYXOv_FhLFcoXwA/images/recruitee/assessment-or-background-check/recruitee_marketplace_technology_partner_request_link.png?fit=max&auto=format&n=vTYXOv_FhLFcoXwA&q=85&s=9c857fc8c19fb00f7481dd12f528696d" alt="Become a Marketplace Technology Partner" width="654" height="288" data-path="images/recruitee/assessment-or-background-check/recruitee_marketplace_technology_partner_request_link.png" />
</Frame>

You will be redirected to the [Technology partner request form](https://tellent.com/technology-partner-application) page. Please complete the form and submit it to Recruitee for review.
Recruitee will review your Marketplace Technology Partner request, and their Technology Partnership Team will respond depending on the type of integration to progress the partnership.

<Note>
  Once you have obtained the Recruitee partnership, follow the steps below to connect your integration with StackOne for Assessment & Background Check.
</Note>

## Provider Side Setup

You need to submit a request for Recruitee Integration Partner as mentioned in [Partner Requirements](#partnership-requirements).
Once approved, you can utilise the **External Trigger Token** to activate your integration app if you wish to test the app via the Recruitee Sandbox.

<Note>
  To obtain the **External Trigger Token**, please follow these steps:

  * [StackOne Configuration](#stackone-configuration)
  * [ATS User Enablement](#ats-user-enablement)
</Note>

## StackOne Configuration

<Note>
  The deletion of a partner integration on **Recruitee** is currently not supported through **StackOne** configuration. To delete an integration, please contact the **StackOne support team**.
</Note>

<Steps>
  <Step title="Navigate to enable the Recruitee at StackOne">
    Go to the ATS category on the *Integrations* page and enable Recruitee.

    <Frame>
      <img src="https://mintcdn.com/stackone-60/vTYXOv_FhLFcoXwA/images/recruitee/assessment-or-background-check/recruitee_config_setup.png?fit=max&auto=format&n=vTYXOv_FhLFcoXwA&q=85&s=7ec3ca04dac0810da15164217e4805c5" alt="Configuration" width="1395" height="436" data-path="images/recruitee/assessment-or-background-check/recruitee_config_setup.png" />
    </Frame>
  </Step>

  <Step title="Enable and Configure Recruitee in StackOne">
    Complete the necessary fields in the **Recruitee - Configuration** modal:

    * **Authentication Type:** Select `Public + Partner API` to integrate with Recruitee (for Assessment/Background Check integration).

          <DifferenceBetweenPublicAndPartnerAPI showPartner={false} title="Difference between Public API & Public + Partner API" />

    * **Environment Type:** If you have a Release Candidate (RC) environment account on Recruitee, select **Staging** as the environment type; otherwise, select **Production**.

    * **Partner Category:** Select the appropriate category based on your integration's classification as a partner for Recruitee, e.g. `Assessments` or `Background Checks`.

    * **Package's List Endpoint URL:** Implement and provide an endpoint to StackOne that StackOne will use to retrieve the list of packages when the recruiter wants to send a test to a candidate.

      Implement the following POST endpoint:

      ```bash theme={null}
      curl --location 'https://your-domain.com/<route-to-the-post-endpoint>' \
      --header 'Content-Type: application/json' \
      --header 'x-stackone-signature: string' \
      --header 'Authorization: Basic <base64encoded-api-key>' \
      --data '{
          "account_id": "456551489512493414",
          "provider": "recruitee"
      }'
      ```

      The expected response of the POST endpoint (list of packages). Refer to:

      * [List Assessments Packages](https://docs.stackone.com/ats/api-reference/assessments/packages/list-assessments-packages)
      * [List Background Check Packages](https://docs.stackone.com/ats/api-reference/background-checks/packages/list-background-check-packages)

      Enter the endpoint into the designated field:

      ```plaintext theme={null}
      https://your-domain.com/<route-to-the-post-endpoint>
      ```

    * **Package ID:** If you do not have the Package's List Endpoint URL, you can specify a particular package ID that will be visible to the recruiter when they wish to send the test to the candidate.

          <Accordion title="How is the Package's List Endpoint URL different from a Static Package ID?">
            <Info>
              The Package's List Endpoint URL allows StackOne to fetch a list of available packages from your system, while the Static Package ID is fixed and available for users to select on the provider's side.
            </Info>

            * When you have a Package's List Endpoint URL, a list of packages will be available to select in Recruitee.

            <Frame>
              <img src="https://mintcdn.com/stackone-60/CLcQ-aaSU5D2pUpd/images/recruitee/assessment-or-background-check/Recruitee-AAB-10.png?fit=max&auto=format&n=CLcQ-aaSU5D2pUpd&q=85&s=019024848991b96535fe166377a3d4f3" alt="Dynamic Package ID" style={{ maxHeight: '500px', width: 'auto' }} width="1920" height="849" data-path="images/recruitee/assessment-or-background-check/Recruitee-AAB-10.png" />
            </Frame>

            * When you have a Static Package ID, a static package ID will be available to select in Recruitee.
          </Accordion>

          <Note>
            At least one field is necessary for making packages available in the provider's UI. Preference will be given to the <b>Package's List Endpoint URL</b> if both fields are configured.
          </Note>

    * **Partner Codename:** A unique identifier for the partner, used to identify your integration on the Recruitee marketplace. It must consist of lowercase letters and dashes (-) and be globally unique.

    * **Name:** The name of your integration that will be displayed on the Recruitee dashboard.

    * **Description:** A brief overview of your integration that will be displayed on the Recruitee dashboard.

    * **Logo:** The logo of your integration that will be displayed on Recruitee.

    <Frame>
      <img src="https://mintcdn.com/stackone-60/vTYXOv_FhLFcoXwA/images/recruitee/assessment-or-background-check/recruitee-configuration-form-1.png?fit=max&auto=format&n=vTYXOv_FhLFcoXwA&q=85&s=faaa1064f344367d7c07b9745c53cd7c" alt="Recruitee Configuration Form" width="524" height="711" data-path="images/recruitee/assessment-or-background-check/recruitee-configuration-form-1.png" />
    </Frame>

    <Frame>
      <img src="https://mintcdn.com/stackone-60/vTYXOv_FhLFcoXwA/images/recruitee/assessment-or-background-check/recruitee-configuration-form-2.png?fit=max&auto=format&n=vTYXOv_FhLFcoXwA&q=85&s=341f1871440738cde265c50b171dd875" alt="Recruitee Configuration Form" width="522" height="818" data-path="images/recruitee/assessment-or-background-check/recruitee-configuration-form-2.png" />
    </Frame>

    Click the `Confirm` or `Save Changes` button to enable Recruitee, which allows end-users to link their accounts via the StackOne Connector Hub.
  </Step>

  <Step title="Add a Webhook">
    Navigate to the *Webhooks* page, click on `Add webhook` and fill out the form:

    * **Name:** Enter a recognisable name for your webhook.
    * **URL:** Enter the URL where the webhook will send notifications for the enabled events.

          <Frame>
            <img src="https://mintcdn.com/stackone-60/vTYXOv_FhLFcoXwA/images/recruitee/assessment-or-background-check/recruitee_add_webhook_form.png?fit=max&auto=format&n=vTYXOv_FhLFcoXwA&q=85&s=55d20cc9f8bdd0d187a1a259afb709a5" alt="Add Webhook form" width="531" height="377" data-path="images/recruitee/assessment-or-background-check/recruitee_add_webhook_form.png" />
          </Frame>

    Enable webhook events from the `Events` tab for Assessment and Background Check, such as `Assessments Order` and `Background Check Order`.

    <Frame>
      <img src="https://mintcdn.com/stackone-60/vTYXOv_FhLFcoXwA/images/recruitee/assessment-or-background-check/recruitee_add_webhook.png?fit=max&auto=format&n=vTYXOv_FhLFcoXwA&q=85&s=4cf083bdf248fe9126e3524ee33b335f" alt="Select webhook events" width="1859" height="956" data-path="images/recruitee/assessment-or-background-check/recruitee_add_webhook.png" />
    </Frame>

    Click the `Confirm` and `Save` buttons to add the webhook.
  </Step>
</Steps>

## ATS User Enablement

<Steps>
  <Step title="To obtain the External Trigger Token">
    Navigate to the *Accounts* page or the StackOne Connector Hub to link your Recruitee account with StackOne.

    <Frame>
      <img src="https://mintcdn.com/stackone-60/vTYXOv_FhLFcoXwA/images/recruitee/assessment-or-background-check/recruitee_accounts_page.png?fit=max&auto=format&n=vTYXOv_FhLFcoXwA&q=85&s=a22efe21b2dfcd8c5c30b76653fd0063" alt="Link Recruitee Account" width="1666" height="297" data-path="images/recruitee/assessment-or-background-check/recruitee_accounts_page.png" />
    </Frame>

    Users will receive the **External Trigger Token** required to activate the integration from the Recruitee Marketplace.

    <Frame>
      <img src="https://mintcdn.com/stackone-60/vTYXOv_FhLFcoXwA/images/recruitee/assessment-or-background-check/recruitee-custom-view-external-trigger.png?fit=max&auto=format&n=vTYXOv_FhLFcoXwA&q=85&s=28f4c3bd6a7ac6777daf956ddcaaf431" alt="Recruitee User view of External-trigger" width="485" height="333" data-path="images/recruitee/assessment-or-background-check/recruitee-custom-view-external-trigger.png" />
    </Frame>
  </Step>

  <Step title="Go to Recruitee Marketplace">
    Navigate to *Marketplace* page, select either `Assessments` or `Background Checks` from **Categories**.

    <Frame>
      <img className="rounded-md" style={{ margin: '0 auto', border: '1px solid #efefef' }} alt="Maintain Assessment Status" src="https://mintcdn.com/stackone-60/CLcQ-aaSU5D2pUpd/images/recruitee/assessment-or-background-check/Recruitee-AAB-2.png?fit=max&auto=format&n=CLcQ-aaSU5D2pUpd&q=85&s=751e5eccf498630de0608188cbc63437" width="1860" height="852" data-path="images/recruitee/assessment-or-background-check/Recruitee-AAB-2.png" />
    </Frame>
  </Step>

  <Step title="To activate the integration">
    Search for your integration partner's name in the search bar.

    <Frame>
      <img className="rounded-md" style={{ margin: '0 auto', border: '1px solid #efefef' }} alt="Edit/View Assessment/Background check Status ID" src="https://mintcdn.com/stackone-60/CLcQ-aaSU5D2pUpd/images/recruitee/assessment-or-background-check/Recruitee-AAB-3.png?fit=max&auto=format&n=CLcQ-aaSU5D2pUpd&q=85&s=5f52f67801c9f834055dbf897ef88756" width="1913" height="847" data-path="images/recruitee/assessment-or-background-check/Recruitee-AAB-3.png" />
    </Frame>

    Click on the integration app, then click `Integrate` button to proceed further,

    <Frame>
      <img className="rounded-md" style={{ margin: '0 auto', border: '1px solid #efefef' }} alt="Edit/View Assessment/Background check Status ID" src="https://mintcdn.com/stackone-60/CLcQ-aaSU5D2pUpd/images/recruitee/assessment-or-background-check/Recruitee-AAB-4.png?fit=max&auto=format&n=CLcQ-aaSU5D2pUpd&q=85&s=bf73d9884fe86cf1f7197bccbc7f417f" width="1905" height="848" data-path="images/recruitee/assessment-or-background-check/Recruitee-AAB-4.png" />
    </Frame>

    A pop-up will appear displaying the details of the integration along with an `Accept and Integrate` button. Click on the button to proceed to the next step.

    <Frame>
      <img className="rounded-md" style={{ margin: '0 auto', border: '1px solid #efefef' }} alt="Edit/View Assessment/Background check Status ID" src="https://mintcdn.com/stackone-60/CLcQ-aaSU5D2pUpd/images/recruitee/assessment-or-background-check/Recruitee-AAB-5.png?fit=max&auto=format&n=CLcQ-aaSU5D2pUpd&q=85&s=a4247f1b6c687d00f8c641daacc3f3de" width="1900" height="842" data-path="images/recruitee/assessment-or-background-check/Recruitee-AAB-5.png" />
    </Frame>

    <Info>
      **For Partners:** To test your integration using the Recruitee Sandbox, you need to input an **External Trigger Token** into the integration from the marketplace to integrate.

      **For Users:** Each user needs to input an **External Trigger Token** to connect with your integration.
    </Info>

    The user will enter the `External Trigger Token` retrieved from the StackOne Connector Hub as mentioned in the <a href="#ats-user-enablement">above</a> steps, then click on `Integrate` to activate the integration app.

    <Frame>
      <img className="rounded-md" style={{ margin: '0 auto', border: '1px solid #efefef' }} alt="Edit/View Assessment/Background check Status ID" src="https://mintcdn.com/stackone-60/CLcQ-aaSU5D2pUpd/images/recruitee/assessment-or-background-check/Recruitee-AAB-6.png?fit=max&auto=format&n=CLcQ-aaSU5D2pUpd&q=85&s=a963fded0d07ce574362e7832700f0b6" width="1910" height="857" data-path="images/recruitee/assessment-or-background-check/Recruitee-AAB-6.png" />
    </Frame>

    The user can modify the permissions for different roles associated with this integration. Once done, click the `Save` button to apply the changes.

    <Frame>
      <img className="rounded-md" style={{ margin: '0 auto', border: '1px solid #efefef' }} alt="Edit/View Assessment/Background check Status ID" src="https://mintcdn.com/stackone-60/vTYXOv_FhLFcoXwA/images/recruitee/assessment-or-background-check/Recruitee-AAB-7.png?fit=max&auto=format&n=vTYXOv_FhLFcoXwA&q=85&s=54ff3f16ce66b075974f67c74f002863" width="1910" height="851" data-path="images/recruitee/assessment-or-background-check/Recruitee-AAB-7.png" />
    </Frame>

    <Note>
      The user can refer to the <a href="https://hub.stackone.com/integration-configuration-concepts/ats/recruitee-assessment-background-checks" target="_blank">Recruitee Assessment or Background Check Guide</a> for instructions on how to activate the Recruitee integration app from the Marketplace.
    </Note>
  </Step>
</Steps>

## ATS User Experience

<Steps>
  <Step title="Select Candidate from the Candidates">
    Navigate to the <i>Candidates</i> page and select the candidate.

    <Frame>
      <img className="rounded-md" style={{ margin: '0 auto', border: '1px solid #efefef' }} alt="Maintain Assessment Status" src="https://mintcdn.com/stackone-60/vTYXOv_FhLFcoXwA/images/recruitee/assessment-or-background-check/Recruitee-AAB-8.png?fit=max&auto=format&n=vTYXOv_FhLFcoXwA&q=85&s=af3aa3cd35a726ba1cf63820bad3383e" width="1911" height="823" data-path="images/recruitee/assessment-or-background-check/Recruitee-AAB-8.png" />
    </Frame>
  </Step>

  <Step title="Send test notification">
    Click on the `menu` icon, then select integration app to proceed.

    <Frame>
      <img className="rounded-md" style={{ margin: '0 auto', border: '1px solid #efefef' }} alt="Edit/View Assessment/Background check Status ID" src="https://mintcdn.com/stackone-60/vTYXOv_FhLFcoXwA/images/recruitee/assessment-or-background-check/Recruitee-AAB-9.png?fit=max&auto=format&n=vTYXOv_FhLFcoXwA&q=85&s=426aeae9f2ff4749d7c2ab3ada031618" width="1913" height="846" data-path="images/recruitee/assessment-or-background-check/Recruitee-AAB-9.png" />
    </Frame>

    A pop-up will appear, allowing users to select the assessments test.

    <Frame>
      <img className="rounded-md" style={{ margin: '0 auto', border: '1px solid #efefef' }} alt="Edit/View Assessment/Background check Status ID" src="https://mintcdn.com/stackone-60/CLcQ-aaSU5D2pUpd/images/recruitee/assessment-or-background-check/Recruitee-AAB-10.png?fit=max&auto=format&n=CLcQ-aaSU5D2pUpd&q=85&s=019024848991b96535fe166377a3d4f3" width="1920" height="849" data-path="images/recruitee/assessment-or-background-check/Recruitee-AAB-10.png" />
    </Frame>

    Select the assessments test, wait a few seconds for the `Send` button to become enabled, and then click `Send` to dispatch the notification.

    <Frame>
      <img className="rounded-md" style={{ margin: '0 auto', border: '1px solid #efefef' }} alt="Edit/View Assessment/Background check Status ID" src="https://mintcdn.com/stackone-60/CLcQ-aaSU5D2pUpd/images/recruitee/assessment-or-background-check/Recruitee-AAB-11.png?fit=max&auto=format&n=CLcQ-aaSU5D2pUpd&q=85&s=b2ef722b07c8ace4429b6ea412e3c782" width="1915" height="848" data-path="images/recruitee/assessment-or-background-check/Recruitee-AAB-11.png" />
    </Frame>

    Once the assessments test notification is successfully sent, users can view the test status on the candidate’s profile as shown below:

    <Frame>
      <img className="rounded-md" style={{ margin: '0 auto', border: '1px solid #efefef' }} alt="Edit/View Assessment/Background check Status ID" src="https://mintcdn.com/stackone-60/CLcQ-aaSU5D2pUpd/images/recruitee/assessment-or-background-check/Recruitee-AAB-12.png?fit=max&auto=format&n=CLcQ-aaSU5D2pUpd&q=85&s=f49d75af0e94afa1e1992d5d19248958" width="1914" height="826" data-path="images/recruitee/assessment-or-background-check/Recruitee-AAB-12.png" />
    </Frame>
  </Step>
</Steps>

## ATS User Experience Customisation

<Steps>
  <Step title="To Update the result via unified api">
    Utilise the following endpoints to update the results:

    * [Assessment Update Result](https://docs.stackone.com/ats/api-reference/assessments/results/update-assessments-result)
    * [Background Check Update Result](https://docs.stackone.com/ats/api-reference/background-checks/results/update-background-check-result)

    Utilise the following endpoint to get metadata to update the result of the assessment or background check:

    * [Connector Meta Information](https://docs.stackone.com/platform/api-reference/connectors/get-connector-meta-information) with the provider key `recruitee` for model `assessments/results.update` or `background_checks/results.update`

    <div className="fields-table">
      | Fields (when provided) | User sees in Recruitee                                               |
      | ---------------------- | -------------------------------------------------------------------- |
      | Result URL             | Visible as an **Open** link                                          |
      | Score's Value          | Visible as a percentage alongside the package's name.                |
      | Result Status          | Visible within the score's tooltip, if the user hovers on the score. |
    </div>
  </Step>

  <Step title="How will the results of the assessment/background check be displayed to the user in Recruitee?">
    Navigate to the candidate profile, where you will see the updated results along with the score from the previously sent test. This information will be available once the candidate has completed the assessment and background check.

    <Frame>
      <img className="rounded-md" style={{ margin: '0 auto', border: '1px solid #efefef' }} alt="View Assessment/Background check Updated Results" src="https://mintcdn.com/stackone-60/CLcQ-aaSU5D2pUpd/images/recruitee/assessment-or-background-check/Recruitee-AAB-13.png?fit=max&auto=format&n=CLcQ-aaSU5D2pUpd&q=85&s=05274708ee10f473866169e9d67fd5a9" width="1920" height="832" data-path="images/recruitee/assessment-or-background-check/Recruitee-AAB-13.png" />
    </Frame>
  </Step>
</Steps>

## Testing Checklist

✅  **Provider Setup:**

* Once the integration is approved/published by Recruitee, it is visible in the [Recruitee Marketplace](https://marketplace.tellent.com) under Assessments or Background Checks categories.

✅  **StackOne Configuration:**

* Selected `Public + Partner API` as the Authentication Type.
* Package's List Endpoint URL is correct.
* Package's List Endpoint response is as expected according to the following endpoint's response:
  * [List Assessments Packages](https://docs.stackone.com/ats/api-reference/assessments/packages/list-assessments-packages)
  * [List Background Check Packages](https://docs.stackone.com/ats/api-reference/background-checks/packages/list-background-check-packages)
* Valid partner codename and other details, as mentioned <a href="#stackone-configuration">here</a>.

✅  **ATS User Enablement:**

* Valid `External Trigger Token` to activate the partner integration.
* Once activated, the integration will be available for selection under the candidate's profile.

✅  **Create a Webhook**

* Added a webhook for Recruitee and enabled it with the events such as: `Assessment Order` or `Background Check Order`.
* Valid webhook URL to receive assessment/background check notifications.

✅  **ATS User Experience:**

* Once activated, the integration will be available for selection under the candidate's profile.
* If you have configured the Package's List Endpoint URL, a list of packages is visible in the dropdown field when the user initiates sending the test to the candidate.
* If you have configured a Static Package ID, a single package is visible in the dropdown field when the user initiates sending the test to the candidate.
* Select a package, click `Send Test`, and send the webhook. A `Pending` icon as a status along with the assessment package name will appear if the notification has been sent.

✅  **Update Result**

* Success response from the update result endpoint.
* Updated result details to Recruitee’s UI.

## Troubleshooting

<div className="troubleshooting-table">
  | Symptom                                                                                          | Likely cause                                                                                                                                                                                                                             | Fix                                                                                                                                                                                                                                                                                                                      |
  | ------------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
  | Unable to find your Integration app in [Recruitee Marketplace](https://marketplace.tellent.com). | Recruitee Partner Integration is not published/approved.                                                                                                                                                                                 | Contact Recruitee support for partnership status.                                                                                                                                                                                                                                                                        |
  | Integration partner app not visible on candidate profile to select.                              | **•** Integration app is not activated. <br /><br /> **•** Invalid External Trigger Token.                                                                                                                                               | **•** Activate your integration app from marketplace. <br /><br /> **•** Provide valid External Trigger Token.                                                                                                                                                                                                           |
  | Getting error message on pop-up when user selects the integration app to send the test.          | **•** Package's List Endpoint URL or Static Package ID is missing from StackOne Configuration. <br /><br /> **•** Invalid response getting from the Package's List Endpoint URL. <br /><br /> **•** Invalid Package's List Endpoint URL. | **•** Add Static Package ID if you don't have Package's List Endpoint URL. <br /><br /> **•** Response format should be expected as mentioned in the [StackOne Configuration](#stackone-configuration). <br /><br /> **•** Check Package's List Endpoint URL implementation at your end. <br /><br /> **•** Verify CORS. |
  | Test notification is not received.                                                               | **•** Invalid webhook URL. <br /><br /> **•** Incorrect webhook events are enabled.                                                                                                                                                      | **•** Verify webhook URL. <br /><br /> **•** Enable expected events as mentioned in the [StackOne Configuration](#stackone-configuration).                                                                                                                                                                               |
  | Unable to update result.                                                                         | Invalid payload format.                                                                                                                                                                                                                  | Check Connector Meta API endpoint for payload format.                                                                                                                                                                                                                                                                    |
</div>

For persistent issues, contact StackOne support with detailed error logs and configuration information.
