Skip to main content
Solved

How to create customer order using Aurena API?

  • November 14, 2025
  • 2 replies
  • 49 views

Forum|alt.badge.img+4

We are automating the customer order creation using power app, we have developed custom connector for customer order handling like reserve, create picklist , create invoice etc..
But i am unable to find end point for create customer order.

Can anyone help me on this?
Please.

Best answer by golo.naito

Hi, 

you should have a look at the API explorer. There you will find the api CustomerOrderHandling.

An end point to creat a customer order would be this:

https://xxxxxxxx.de/main/ifsapplications/projection/v1/CustomerOrderHandling.svc/CustomerOrderSet

The API documentation will also tell you what fields are required in the payload.

BR 

Golo

2 replies

Forum|alt.badge.img+8
  • Sidekick (Customer)
  • 26 replies
  • Answer
  • November 14, 2025

Hi, 

you should have a look at the API explorer. There you will find the api CustomerOrderHandling.

An end point to creat a customer order would be this:

https://xxxxxxxx.de/main/ifsapplications/projection/v1/CustomerOrderHandling.svc/CustomerOrderSet

The API documentation will also tell you what fields are required in the payload.

BR 

Golo


Forum|alt.badge.img+5
  • Sidekick (Customer)
  • 57 replies
  • November 14, 2025

@Roshan0001 

POST {{url}}/main/ifsapplications/projection/v1/CustomerOrderHandling.svc/CustomerOrderSet

 

Body : 

{

    "AuthorizeCode": "*",

    "Contract": "{{contract}}",

    "CustomerNo": "{{customer_no}}",

    "CustomerPoNo": "REFNGE001",

    "WantedDeliveryDate": "2024-12-07T00:00:00Z",

    "OrderId": "{{order_id}}",

    "NoteText": "Session POSTMAN"

}