Orchestrator Call from Postman - including Array
Hi
I have an Orchestrator API which includes an array as input
It works fine when tested via Orchestrator Studio, but I am getting errors when I try to call this API via Postman and looks like I am not structuring the JSON parameters correctly
We have other Orchestrations without array parameters and they are working from Postman
I have tried with both Generic and JDE Standard JSON type
e.g. From Oracle Support:
Generic input format:
{
"Document_Key_Company_EDI": "00902"
}
JDE Standard input format:
{
"name": "Document_Key_Company_EDI",
"value": "00902"
}
Does anyone have an example of a postman call to an Orchestration with an array?