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

# Get access to the sandbox environment

> Developer registration - how to get access to SOD (the SuperOffice sandbox environment) and the Developer Portal.

export const SOForm = ({scriptUrl}) => {
  const scriptRef = useRef(null);
  useEffect(() => {
    const script = document.createElement('script');
    script.src = scriptUrl;
    script.async = true;
    if (scriptRef.current && !scriptRef.current.querySelector('script')) {
      scriptRef.current.appendChild(script);
    }
    return () => {
      if (scriptRef.current && scriptRef.current.contains(script)) {
        scriptRef.current.removeChild(script);
      }
    };
  }, [scriptUrl]);
  return <div ref={scriptRef} />;
};

Your first step to building an application for SuperOffice CRM Online is to register as a developer to get access to our sandbox environment.

## Required info

* Your name and email
* Name of your company

## Relevant info

* Whether you are exploring our APIs or you already have an application idea
* Whether you have prior experience with us

## Process

1. Submit the [developer account request](#register-now) (form).
   * You will get a confirmation that we have received your request.
2. We create a new [tenant][2] for you in [SOD][1] and you will receive an email with your account details.
   * This is normally handled within the next business day.
3. Sign in to your new SOD account and start getting familiar. Please let us know if you experience any problems with the account.

The SOD tenant can be shared by multiple developers within a company. However, you need separate, personal accounts for signing in. You can [create additional users][4] in SuperOffice Settings and maintenance.

## Register now

Get your own sandbox tenant and login to our developer portal to begin creating online apps in our development environment!

<SOForm scriptUrl="https://online2.superoffice.com/Cust1990/CS/scripts/customer.fcgi?action=form&id=9" />

## Next step

[Register your application idea][3]

[1]: ./app-envir

[2]: ../getting-started/index#tenant

[3]: ../create-app/index

[4]: ../../online/identity/user/add-user-in-admin-client


## Related topics

- [CRM Online production sandbox (test environment)](/en/online/sandbox/index.md)
- [SuperOffice Operation Center for customer administrators with a production sandbox](/en/online/sandbox/replace.md)
- [Application environments](/en/developer-portal/getting-started/app-envir.md)
- [How do I create and run CRMScripts?](/en/automation/crmscript/overview/envir-and-tools.md)
- [Steps performed when we clone a source database to a production sandbox](/en/online/sandbox/clone-to.md)
- [Getting started with CRMScript](/en/automation/crmscript/overview/getting-started.md)
