POST api/MTBooking/Update/Contacts
Request Information
URI Parameters
None.
Body Parameters
DTO_Contacts| Name | Description | Type | Additional information |
|---|---|---|---|
| Contact_No | string |
None. |
|
| Tel_No | string |
None. |
|
| Address | string |
None. |
|
| Location | string |
None. |
|
| string |
None. |
||
| Schedule1 | string |
None. |
|
| Schedule2 | string |
None. |
|
| Schedule3 | string |
None. |
|
| CATEGORY_ID | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Contact_No": "sample string 1",
"Tel_No": "sample string 2",
"Address": "sample string 3",
"Location": "sample string 4",
"Email": "sample string 5",
"Schedule1": "sample string 6",
"Schedule2": "sample string 7",
"Schedule3": "sample string 8",
"CATEGORY_ID": "sample string 9"
}
application/xml, text/xml
Sample:
<DTO_Contacts xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MTBooking.Web.API.Models"> <Address>sample string 3</Address> <CATEGORY_ID>sample string 9</CATEGORY_ID> <Contact_No>sample string 1</Contact_No> <Email>sample string 5</Email> <Location>sample string 4</Location> <Schedule1>sample string 6</Schedule1> <Schedule2>sample string 7</Schedule2> <Schedule3>sample string 8</Schedule3> <Tel_No>sample string 2</Tel_No> </DTO_Contacts>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
RequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | Status |
None. |
|
| Description | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": 0,
"Description": "sample string 1"
}
application/xml, text/xml
Sample:
<RequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MTBooking.Web.API.Models"> <Description>sample string 1</Description> <Status>Ok</Status> </RequestModel>