POST api/appointment/disputetreatment

Request Information

URI Parameters

None.

Body Parameters

AppointmentDisputeTreatment
NameDescriptionTypeAdditional information
AppId

integer

None.

Notes

string

None.

NewTrtId

integer

None.

UserId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "AppId": 1,
  "Notes": "sample string 2",
  "NewTrtId": 3,
  "UserId": 4
}

application/xml, text/xml

Sample:
<AppointmentDisputeTreatment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Atlantis.Library.Web.Models">
  <AppId>1</AppId>
  <NewTrtId>3</NewTrtId>
  <Notes>sample string 2</Notes>
  <UserId>4</UserId>
</AppointmentDisputeTreatment>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of AppointmentDispute
NameDescriptionTypeAdditional 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>