GET api/Meeting
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of MeetingDTO| Name | Description | Type | Additional 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": "2025-12-12T16:56:32.0139722+02:00",
"CustomerID": 6
},
{
"ID": 1,
"Name": "sample string 2",
"Subject": "sample string 3",
"Notes": "sample string 4",
"Date": "2025-12-12T16:56:32.0139722+02:00",
"CustomerID": 6
}
]
application/xml, text/xml
Sample:
<ArrayOfMeetingDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataAccess.DTO">
<MeetingDTO>
<CustomerID>6</CustomerID>
<Date>2025-12-12T16:56:32.0139722+02:00</Date>
<ID>1</ID>
<Name>sample string 2</Name>
<Notes>sample string 4</Notes>
<Subject>sample string 3</Subject>
</MeetingDTO>
<MeetingDTO>
<CustomerID>6</CustomerID>
<Date>2025-12-12T16:56:32.0139722+02:00</Date>
<ID>1</ID>
<Name>sample string 2</Name>
<Notes>sample string 4</Notes>
<Subject>sample string 3</Subject>
</MeetingDTO>
</ArrayOfMeetingDTO>