Skip to main content

I’m trying to create invoice from customer order using Aurena API,

 

 

and i’m looking for the end point to do so,

Any one have idea about the specific endpoint?

 

 

@Roshan0001  I just ran a quick test in an IFS Cloud environment. I guess the endpoint should be similar for Apps10 Aurena. See below


https://*******-uat.ifs.cloud/main/ifsapplications/projection/v1/QuickOrderFlowHandling.svc/ProcessOrders

Payload:
{
"Selection": "ORDER_NO=*1519^",
"StartEvent": "500",
"CreateRentalTrans": null
}

 


@Marcel.Ausan 
Thanks for the answer.
Let me check this and get back to you!


@Marcel.Ausan 

Thanks for the reply , it is the correct answer.
I want to know little information about api explorer from you,

We are working on medium scale integration with IFS api, and there are some other process need to integrate.

My question is how do we find correct api endpoint for correct task ?
We have access to the API Explorer but there is small detail about the end point as a example What is the “StartEvent” Property is used for what are the values for that property , currently you have used 500 as the value, what is the mean of 500 .
Where i can get complete guide about the endpoints ?


@Roshan0001 the easiest way is to:

→ login via Aurena client

→ start web development tools → CTRL + SHIFI + I in Chrome

→ try to do the expected step → and see what the HTTP request/payload is

 

 

In this particular case start event 500 is hardcoded in the PL/SQL package that will create the transactions in the backend. As an integration developer you don’t need to know what the different codes are. You just need to be able to read the endpoint/payload and let the backend do it’s thing.

 

I hope this will be helpful for you.


@Marcel.Ausan 

Thanks for the great reply!


Reply