GET api/Appointment/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

ListResponseOfAppointmentModel
NameDescriptionTypeAdditional 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"
}