Setting up output.params
Specify the parameters that will be returned by Infor AI Platform. As of now, ItemNumber is
only supported by RRS.
Note: It is important to define the expected
parameters that will be returned by Infor AI Platform in their proper sequence and name for
RRS to read the response correctly
You can use these examples as references:
Infor AI Platform is set up to return the ItemNumber, ItemDesc, and Quantity in this order.
- output.params should have these values: ItemNumber, ItemDesc, Quantity
- An example of Infor AI Platform
response:
{ “ITEM-A”, “Description A”, “1”, “ITEM-B”, “Description B”, “4” }
- With the output.params above, the RRS will only treat every first and fourth data as Items which are ITEM-A and ITEM-B.
Infor AI Platform is set up to return the ItemNumber only.
- The output.params should have this value: ItemNumber.
- An example of Infor AI Platform
response:
{ “ITEM-A”, “ITEM-B”, “ITEM-C” }
- With the output.params above, the RRS will only treat every data as Items which are ITEM-A, ITEM-B, and ITEM-C.
Infor AI Platform is set up to return the Customer, ItemNumber, and Quantity in this order.
- The output.params should have these value: Customer, ItemNumber, Quantity.
- An example of Infor AI Platform
response:
{ “Customer A”, “ITEM-A”, “1”, “Customer A”, “ITEM-B”, “4”, }
- With the output.params above, the RRS will only treat every second and fifth data as Items which are ITEM-A and ITEM-B.