POST api/DeliveryCavejaSendOrder
Request Information
URI Parameters
None.
Body Parameters
CavejaDeliveryOrder| Name | Description | Type | Additional information |
|---|---|---|---|
| order_id | string |
None. |
|
| store_id | string |
None. |
|
| order_platform | string |
None. |
|
| order_type | string |
None. |
|
| order_address | string |
None. |
|
| order_address_number | string |
None. |
|
| order_address_intercom | string |
None. |
|
| order_address_postal_code | string |
None. |
|
| order_address_city | string |
None. |
|
| order_address_province | string |
None. |
|
| order_address_country | string |
None. |
|
| order_maps_lng | string |
None. |
|
| order_maps_lat | string |
None. |
|
| order_delivery_cost | decimal number |
None. |
|
| order_delivery_date_time | date |
None. |
|
| order_delivery_date_time_estimated | date |
None. |
|
| order_voucher_code | string |
None. |
|
| order_voucher_amount | decimal number |
None. |
|
| order_discount_code | string |
None. |
|
| order_discount_amount | decimal number |
None. |
|
| order_tip_rider | decimal number |
None. |
|
| order_currency | string |
None. |
|
| order_total | decimal number |
None. |
|
| order_payment_type | string |
None. |
|
| order_payment_guid | string |
None. |
|
| order_note | string |
None. |
|
| client_id | string |
None. |
|
| client_name | string |
None. |
|
| client_surname | string |
None. |
|
| client_email | string |
None. |
|
| client_phone | string |
None. |
|
| client_fiscal_code | string |
None. |
|
| client_vat | string |
None. |
|
| client_sdi_code | string |
None. |
|
| client_invoice_address | string |
None. |
|
| client_invoice_address_number | string |
None. |
|
| client_invoice_address_postal_code | string |
None. |
|
| client_invoice_address_city | string |
None. |
|
| client_invoice_address_province | string |
None. |
|
| client_invoice_address_country | string |
None. |
|
| order_item | Collection of CavejaDeliveryOrderItem |
None. |
Request Formats
application/json, text/json
Sample:
{
"order_id": "sample string 1",
"store_id": "sample string 2",
"order_platform": "sample string 3",
"order_type": "sample string 4",
"order_address": "sample string 5",
"order_address_number": "sample string 6",
"order_address_intercom": "sample string 7",
"order_address_postal_code": "sample string 8",
"order_address_city": "sample string 9",
"order_address_province": "sample string 10",
"order_address_country": "sample string 11",
"order_maps_lng": "sample string 12",
"order_maps_lat": "sample string 13",
"order_delivery_cost": 14.0,
"order_delivery_date_time": "2026-03-25T16:08:03.5571879+01:00",
"order_delivery_date_time_estimated": "2026-03-25T16:08:03.5571879+01:00",
"order_voucher_code": "sample string 17",
"order_voucher_amount": 18.0,
"order_discount_code": "sample string 19",
"order_discount_amount": 20.0,
"order_tip_rider": 21.0,
"order_currency": "sample string 22",
"order_total": 23.0,
"order_payment_type": "sample string 24",
"order_payment_guid": "sample string 25",
"order_note": "sample string 26",
"client_id": "sample string 27",
"client_name": "sample string 28",
"client_surname": "sample string 29",
"client_email": "sample string 30",
"client_phone": "sample string 31",
"client_fiscal_code": "sample string 32",
"client_vat": "sample string 33",
"client_sdi_code": "sample string 34",
"client_invoice_address": "sample string 35",
"client_invoice_address_number": "sample string 36",
"client_invoice_address_postal_code": "sample string 37",
"client_invoice_address_city": "sample string 38",
"client_invoice_address_province": "sample string 39",
"client_invoice_address_country": "sample string 40",
"order_item": [
{
"product_id": "sample string 1",
"product_pos_code": "sample string 2",
"product_description": "sample string 3",
"product_quantity": 4.0,
"product_price": 5.0,
"product_discount": 6.0,
"product_note": "sample string 7",
"product_variants": [
{
"variant_id": "sample string 1",
"variant_pos_code": "sample string 2",
"variant_description": "sample string 3",
"variant_quantity": 4.0,
"variant_price": 5.0
},
{
"variant_id": "sample string 1",
"variant_pos_code": "sample string 2",
"variant_description": "sample string 3",
"variant_quantity": 4.0,
"variant_price": 5.0
}
]
},
{
"product_id": "sample string 1",
"product_pos_code": "sample string 2",
"product_description": "sample string 3",
"product_quantity": 4.0,
"product_price": 5.0,
"product_discount": 6.0,
"product_note": "sample string 7",
"product_variants": [
{
"variant_id": "sample string 1",
"variant_pos_code": "sample string 2",
"variant_description": "sample string 3",
"variant_quantity": 4.0,
"variant_price": 5.0
},
{
"variant_id": "sample string 1",
"variant_pos_code": "sample string 2",
"variant_description": "sample string 3",
"variant_quantity": 4.0,
"variant_price": 5.0
}
]
}
]
}
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
ResponseDeliveryCavejaOrder| Name | Description | Type | Additional information |
|---|---|---|---|
| order_state | string |
None. |
|
| order_guid | string |
None. |
|
| order_error | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"order_state": "sample string 1",
"order_guid": "sample string 2",
"order_error": "sample string 3"
}