Release an Inventory Issue
If you are using the contract-based REST API to integrate MYOB Acumatica with an external system, this external system can release an inventory issue in MYOB Acumatica.
Testing of the Request
- Deploy a new MYOB Acumatica instance with the U100 dataset. For details on deploying an instance, see To Deploy an MYOB Acumatica Instance.
- To sign in to the instance in the client application, use the tenant name (which you specified when you created the instance) and the HEADOFFICE branch.
- 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.
Request
<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 (such as https://my.acumatica.com
) if the
instance is installed in the root of the website.You can use the following request example to invoke the release operation for the 000055 inventory issue through the contract-based REST API.
POST /ReleaseInventoryIssue HTTP/1.1
Host: [<MYOB Acumatica instance URL>]/entity/Default/23.200.001/InventoryIssue
Accept: application/json
Content-Type: application/json
{
"entity": {
"ReferenceNbr": { "value": "000055" }
}
}
If the 202 Accepted status code is returned for this request, the release
operation has been invoked successfully. The Location
header of the
response contains the URL that you can use to check the status of the release
operation by using the GET
HTTP method. When the
GET
HTTP method with this URL returns 204 No Content,
the operation has been completed. Following is an example of such request.
GET /ReleaseInventoryIssue/status/2dd24788-3f54-4673-a040-bf55b6d04a00 HTTP/1.1
Host: [<MYOB Acumatica instance URL>]/entity/Default/23.200.001/InventoryIssue
Accept: application/json
Content-Type: application/json