POST api/appointment/disputeappointmentmissing
Request Information
URI Parameters
None.
Body Parameters
AppointmentDisputeMissing| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerName | string |
None. |
|
| TrtId | integer |
None. |
|
| Date | string |
None. |
|
| StartTime | string |
None. |
|
| Notes | string |
None. |
|
| UserId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"CustomerName": "sample string 1",
"TrtId": 2,
"Date": "sample string 3",
"StartTime": "sample string 4",
"Notes": "sample string 5",
"UserId": 6
}
application/xml, text/xml
Sample:
<AppointmentDisputeMissing xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Atlantis.Library.Web.Models"> <CustomerName>sample string 1</CustomerName> <Date>sample string 3</Date> <Notes>sample string 5</Notes> <StartTime>sample string 4</StartTime> <TrtId>2</TrtId> <UserId>6</UserId> </AppointmentDisputeMissing>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of AppointmentDispute| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| CustomerName | string |
None. |
|
| TrtId | integer |
None. |
|
| Date | string |
None. |
|
| StartTime | string |
None. |
|
| Notes | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"CustomerName": "sample string 2",
"TrtId": 3,
"Date": "sample string 4",
"StartTime": "sample string 5",
"Notes": "sample string 6"
},
{
"Id": 1,
"CustomerName": "sample string 2",
"TrtId": 3,
"Date": "sample string 4",
"StartTime": "sample string 5",
"Notes": "sample string 6"
}
]
application/xml, text/xml
Sample:
<ArrayOfAppointmentDispute xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Atlantis.Library.Web.Models">
<AppointmentDispute>
<CustomerName>sample string 2</CustomerName>
<Date>sample string 4</Date>
<Id>1</Id>
<Notes>sample string 6</Notes>
<StartTime>sample string 5</StartTime>
<TrtId>3</TrtId>
</AppointmentDispute>
<AppointmentDispute>
<CustomerName>sample string 2</CustomerName>
<Date>sample string 4</Date>
<Id>1</Id>
<Notes>sample string 6</Notes>
<StartTime>sample string 5</StartTime>
<TrtId>3</TrtId>
</AppointmentDispute>
</ArrayOfAppointmentDispute>