Orders
Managing orders using API endpoints
Overview of Simplio3D API Orders Endpoints
GET /orders/{orderId}
GET Endpoint: Retrieve an Order by ID
Enter token in format (Bearer <your_token>)
ID of the order
Order retrieved successfully
No content
Unauthorized
Order not found
Internal Server Error
No content
POST /orders
POST Endpoint: Create a New Order
Enter token in format (Bearer <your_token>)
Configurator total amount
3400Customer details in JSON format
{'First Name':'Jhon','Last Name':'Smith','Company':'Google Inc.','Address':'Wall Street'}Configurator summary in JSON format
{'Catalog':'Teacup classic','Material':'Glossy white','Quantity':'230'}Configurator snapshot image file
Array of print map image files
Order created successfully
Order resource representation
Unique identifier for the order
1Total price of the order
149.99Status of the order
completedDetails of the customer
{"name":"John Doe","email":"johndoe@example.com"}Summary of the configurator options selected
{"config_id":123,"options":{"color":"red","size":"L"}}URL of the configurator snapshot image
https://cdn.simplio3d.com/orders/107/original/print_snapshot.pngArray of URLs for configurator print maps
https://cdn.simplio3d.com/orders/107/original/print_map_1.pngURL for downloading the order invoice
https://example.com/invoice/12345Shopify order ID if applicable
SH123456789Timestamp when the order was created
2024-03-01T10:30:00ZTimestamp when the order was last updated
2024-03-02T12:45:00ZInvalid request parameters
Unauthorized request
Internal server error
GET /orders
GET Endpoint: Fetch All Orders
Enter token in format (Bearer <your_token>)
Number of results per page
25Number of page
2Field to sort orders by
created_atSort order (asc or desc)
descPossible values: Filter orders by specific configurator ID
127Filter orders created after this date
2024-01-01Filter orders created before this date
2024-12-31Successful response
Unauthorized
Internal Server Error
Last updated