I want to prepare some example api calls for REST API.
I created an EntitySet to use CustomerOrderLine functionality like below;
//Dynamic dependency @DynamicComponentDependency ORDER entityset CustomerOrderLines for CustomerOrderLine;
Now I can see;
I am a bit confused how to use this red marked POST method. How to send body for qty_assigned value? I am sending request but oracle returns me that “QTY_ASSIGNED” is mendatory for CustomerOrderLine…
How can I send the new “QtyAssigned” value to api?
And I looked at the .svc file. there is no attr added with “QTY_ASSIGNED” Value as well.
I am new at REST API. Could you please help me. Thanks.
Page 1 / 1
Hi,
This is a state change action in CustomerOrderLine. Typically state change actions in IFS OData APIs do not accept/require any additional payload. Therefore an empty payload is specified in the POST request (e.g. {})
Have you looked at the Aurena Debug Console when performing the state change in the browser client?
Regards,
/Rifki
Is this really a state change. Ok its behave like a state change method but I got this error as a response:
How to use this action then? Unfortunatelly I could not understand still. So I thought that I need to specify a payload for the request.
I have never opened the Aurena Debug Console yet :)
Hi,
This is a state change action in CustomerOrderLine. Typically state change actions in IFS OData APIs do not accept/require any additional payload. Therefore an empty payload is specified in the POST request (e.g. {})
Have you looked at the Aurena Debug Console when performing the state change in the browser client?
Regards,
/Rifki
I have never heard states like QtyAssigned or others before,So I confused. Thank you very much for you kind answer. I got it. Now I should look for a post request which accepts a few payload :)
Hi,
As Rifky said above, SetQtyAssigned is related to a state change. For example, when you Reserve Customer Order line, this SetQtyAssigned is used.
It's not allowed to update the QtyAssigned (Reserved Qty) directly. Here the value updates via business logic.
Although the name is bit misleading, here the POST SetQtyAssigned is not intended to update the QtyAssigned.
Regards, Malintha
Hi,
The topic is already answered. But I want to add detailed information about state change actions.
First of all, You must know the e-Tag value of the record to state change. You can get an e-Tag value with a GET request. You are going to use it as the header parameter while sending the POST request.