Retrieve a Configuration Entry

Through the contract-based REST API, an external application can retrieve features and options of the manufacturing product configurator from MYOB Acumatica Manufacturing Edition and expose them to a user of the external application. These features and options are available for MYOB Acumatica Manufacturing Edition users on the Configuration Entry (AM306000) form.

Testing of the Request

Before you test the code in the following section, you need to do the following:

  1. Deploy a new MYOB Acumatica instance with the SalesDemo dataset. For details on deploying an instance, see To Deploy an MYOB Acumatica Instance.
  2. On the Enable/Disable Features (CS100000) form, make sure that the Manufacturing and Product Configurator features are enabled.
  3. If you use Postman as the client application for testing, in the IntegrationDevelopmentGuide.postman_collection.json collection (which is located in the IntegrationDevelopment\Help folder of the Help-and-Training-Examples repository on GitHub), make sure the collection variables have the proper values.
  4. To sign in to the instance in the client application, use the tenant name (which you specified when you created the instance) and the PRODWHOLE branch.

Request

You can use the following request example to retrieve the configuration entry with the AMC000001 ID through the contract-based REST API.

Tip: In the request example below, <MYOB Acumatica instance URL> is the URL of the MYOB Acumatica instance (such as https://my.acumatica.com/MyInstance). You can omit the instance name in the URL (that is, you can use https://my.acumatica.com) if the instance is installed in the root of the website.
GET /entity/MANUFACTURING/23.200.001/ConfigurationEntry/AMC000001?
    $expand=Attributes,Features/Options HTTP/1.1
Host: [<Acumatica ERP instance URL>]
Accept: application/json
Content-Type: application/json