Skip to main content
Skip table of contents

OData URL from an Acumatica Instance

This page shows how to put together the OData URL from an Acumatica instance. 

Acumatica URLs (portals and OData) are NOT case sensitive. 

OData URL from Single-tenant Acumatica

The OData URL is constructed by adding the suffix odata or odatav4 to the core Acumatica URL.

How to Find your Core Acumatica URL

  1. Log in to your Acumatica tenant in a web browser.
    • The login page of a single-tenant Acumatica only prompts for a user name and password. There is notSelect a tenant dropdown menu.
  2. Examine the URL shown on the web browser after logging in.   
    The URL  should end with a suffix such as 'Main' or '(W(n))/Main' and maybe strings after the word Main.
    The string before the suffix is your core Acumatica single-tenant URL.

Core Acumatica URL Examples:   The core URL is shown in bold/

  • https://acu.abc.com/DB_2022R2/Main
  • https://acu.abc.com/DB_2022R2/(W(2))/Main
  • https://acu.abc.com/DB_2022R2/(W(2))/Main?ScreenId=AR3010PL

How to Build Your OData URL

The OData URL is constructed by adding the suffix odata for OData v3, or odatav4 for OData v4 to the core Acumatica URL.

Example.  Based on the examples above, the OData URL is:

  1. OData v3https://acu.abc.com/DB_2022R2/odata
  2. OData v4https://acu.abc.com/DB_2022R2/odatav4

OData URL from a Multi-tenant Acumatica

The login page of a multi-tenant Acumatica has a Select a tenant dropdown menu, and prompts for a user name and password. 

  1. Log in to one of your Acumatica tenants using a web browser.
  2. Once you are logged to Acumatica, go to Finance → Journal Transactions.
  3. You'll see the URL on the web browser's with something like the examples below. 
    Examples Your core Acumatica URL is comprised of the segments in bold.
    1. Example 1: Full URL: https://acu.abc.com/(W(2))/Main?CompanyID=TenantId&ScreenId=GL3010PL
      1. Acumatica core URL: https://acu.abc.com/TenantId/
    2. Example 2: Full URL: https://acu.abc.com/DB_2022R2/(W(2))/Main?CompanyID=TenantId&ScreenId=GL3010PL
      1. Acumatica core URL: https://acu.abc.com/DB_2022R2/TenantId/
  4. The OData URL puts  odata for OData v3, or odatav4 for OData v4 between the core Acumatica URL and the TenantId.
    Example.  Continuing from the Example 1 above:
    1. OData v3https://acu.abc.com/odata/TenantId
    2. OData v4https://acu.abc.com/odatav4/TenantId

Notes

  • (W(n)): some sites will show these two URL segments, some sites will not.
  • (W(n)) where n = integer. 
  • When the tenant name has spaces, the Acumatica URL will replace them with '+'. However, use %20 instead of +  for the OData URL.
    Examples:
    • Acumatica URL: https://acumatica.com/Main?CompanyID=DataSelf+ETL+Plus&ScreenId=DB000031
    • OData URL: https://acumatica/odata/DataSelf%20ETL%20Plus/


JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.