> ## 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.

# Order production sandbox

> Submit this form to order production sandbox.

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} />;
};

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


## Related topics

- [Request additional tenants](/en/developer-portal/tenants/get.md)
- [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)
- [Steps performed when we clone a source database to a production sandbox](/en/online/sandbox/clone-to.md)
- [First-time activation](/en/developer-portal/custom-app/activate.md)
- [SuperOffice.License.SoLicenseNames](/en/api/reference/webapi/SuperOffice.License.SoLicenseNames.md)
