GET api/Meeting?id={id}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
MeetingDTOName | 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": "2024-12-28T08:48:20.5014211+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:48:20.5014211+02:00</Date> <ID>1</ID> <Name>sample string 2</Name> <Notes>sample string 4</Notes> <Subject>sample string 3</Subject> </MeetingDTO>