Create Order
Creates a new Order object.
POST/order/create
Parameters
date_limit - date required
The order date limit.
enterprise_identifier - string required
The contact’s id, name, email or cif for attach to the order.
user_email - string required
The user's email for attach as order responsible.
state - integer required
The order state funnel id.
More parameters
- reference - string
- comment - string
- extra_fields - array
- products - array
We are still working on all definitons of each parameter.
Example (required parameters selected)
{
"enterprise_identifier" : "contact@salesly.app",
"user_email": "support@salesly.app",
"date_limit": "2025-01-01T00:00:00",
"state": 1,
"products": [
{
"reference": "PRODUCT_1344",
"rate_sku": "RATE_1",
"discount": 0,
"quantity": 3,
"comment": "",
"description": ""
}
]
}
Response
status 200
The created order object.
Response
{
"reference": "#_21967",
"date_limit": "2025-01-01T00:00:00",
"enterprise_id": 23443,
"user_id": 30,
"who_created": 30,
"updated_at": "2025-03-12 13:05:55",
"created_at": "2025-03-12 13:05:55",
"id": 26523,
"state": {
"id": 103680,
"state": 1,
"comment": null,
"order_id": 26523,
"created_at": "2025-03-12 13:05:55",
"updated_at": "2025-03-12 13:05:55",
"name": "En Aceptación"
},
"amount": 300,
"products_basic": [
{
"id": 1346,
"reference": "PRODUCT_1344",
"name_ref": "(PRODUCT_1344) Product 1",
"name": "Product 1",
"description": " ",
"store_name": " ",
"store_description": " ",
"pivot": {
"order_id": 26523,
"product_id": 1346,
"quantity": 3,
"discount": 0,
"price": "100.00000",
"description": null,
"cost": "0.00000",
"comment": null,
"services": null,
"product_rate_id": 1374,
"is_highlighted": 0
},
"rates": [
{
"id": 1374,
"product_id": 1346,
"sku": "RATE_1",
"cost": "0",
"price": "100",
"services": null,
"primary": true,
"created_at": "2025-03-12 11:35:17",
"updated_at": "2025-03-12 11:35:17",
"name": "RATE_1 (100.00000)"
}
]
}
],
"states": [
{
"id": 103680,
"state": 1,
"comment": null,
"order_id": 26523,
"created_at": "2025-03-12 13:05:55",
"updated_at": "2025-03-12 13:05:55",
"name": "En Aceptación"
}
]
}