POST api/v1/submit_order_request
Request Information
URI Parameters
None.
Body Parameters
entity_order| Name | Description | Type | Additional information |
|---|---|---|---|
| full_name | string |
None. |
|
| contact_no | string |
None. |
|
| email_id | string |
None. |
|
| location_id | integer |
None. |
|
| booking_date | string |
None. |
|
| bookedslotrate_ids | string |
None. |
|
| total_amount | decimal number |
None. |
|
| promo_code | string |
None. |
|
| discount_amount | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"full_name": "sample string 1",
"contact_no": "sample string 2",
"email_id": "sample string 3",
"location_id": 4,
"booking_date": "sample string 5",
"bookedslotrate_ids": "sample string 6",
"total_amount": 7.1,
"promo_code": "sample string 8",
"discount_amount": 9.1
}
application/xml, text/xml
Sample:
<entity_order xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/"> <bookedslotrate_ids>sample string 6</bookedslotrate_ids> <booking_date>sample string 5</booking_date> <contact_no>sample string 2</contact_no> <discount_amount>9.1</discount_amount> <email_id>sample string 3</email_id> <full_name>sample string 1</full_name> <location_id>4</location_id> <promo_code>sample string 8</promo_code> <total_amount>7.1</total_amount> </entity_order>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of ObjectNone.
Response Formats
application/json, text/json
Sample:
Sample not available.