GET api/Appointment/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ListResponseOfAppointmentModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Results | Collection of AppointmentModel |
None. |
|
| success | boolean |
None. |
|
| error | string |
None. |
|
| Version | string |
None. |
|
| HttpStatus | HttpStatusCode |
None. |
|
| Errors | Collection of string |
None. |
|
| Messages | Collection of string |
None. |
|
| Success | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Results": [
{
"appointmentID": 1,
"userID": 1,
"description": "sample string 2",
"date": "sample string 3",
"time": "sample string 4"
},
{
"appointmentID": 1,
"userID": 1,
"description": "sample string 2",
"date": "sample string 3",
"time": "sample string 4"
}
],
"success": true,
"error": "sample string 2"
}