POST api/Meeting

Request Information

URI Parameters

None.

Body Parameters

MeetingDTO
NameDescriptionTypeAdditional information
ID

integer

None.

Name

string

None.

Subject

string

None.

Notes

string

None.

Date

date

None.

CustomerID

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "Name": "sample string 2",
  "Subject": "sample string 3",
  "Notes": "sample string 4",
  "Date": "2024-12-28T08:59:47.17819+02:00",
  "CustomerID": 6
}

application/xml, text/xml

Sample:
<MeetingDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataAccess.DTO">
  <CustomerID>6</CustomerID>
  <Date>2024-12-28T08:59:47.17819+02:00</Date>
  <ID>1</ID>
  <Name>sample string 2</Name>
  <Notes>sample string 4</Notes>
  <Subject>sample string 3</Subject>
</MeetingDTO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

MeetingDTO
NameDescriptionTypeAdditional information
ID

integer

None.

Name

string

None.

Subject

string

None.

Notes

string

None.

Date

date

None.

CustomerID

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "Name": "sample string 2",
  "Subject": "sample string 3",
  "Notes": "sample string 4",
  "Date": "2024-12-28T08:59:47.17819+02:00",
  "CustomerID": 6
}

application/xml, text/xml

Sample:
<MeetingDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataAccess.DTO">
  <CustomerID>6</CustomerID>
  <Date>2024-12-28T08:59:47.17819+02:00</Date>
  <ID>1</ID>
  <Name>sample string 2</Name>
  <Notes>sample string 4</Notes>
  <Subject>sample string 3</Subject>
</MeetingDTO>