hello folks so i have a service which is supposed to create an InventoryIssue using IN302000, with the help of an API call on a custom endpoint:
I didn’t find an existing Contract , so I created an custom one named InventoryIssue, quite similar to InventoryReceipt.
And I tried this PUT call in Postman:
The response is what I expected, with a ReferenceNbr
but when I try the POST for ReleasingFromHold with this ReferenceNbr as parameter, it does not remove the hold of that specific ReferenceNbr, rather it creates a new Issue,
this is what the necessary actions look like
I have been following the integration development guide till now to create the different entities and details.
So if anyone can help me figure out why me calling the ReleaseFromHold does not removes hold from the previous PUT request, but rather create a new InventoryIssue?