GET api/pro/clinics/{clinicId}/client-appointments/{clientAppointmentId}

Gets a client appointment by clinic and client id.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
clinicId

The id of the Clinic.

string

Required

clientAppointmentId

The id of the client appointment id.

string

Required

Body Parameters

None.

Response Information

Resource Description

Return the client appointment response with the specified id.

ClientAppointmentResponse
NameDescriptionTypeAdditional information
Id

string

None.

EntityActivity

EntityActivityDto

None.

Name

string

None.

StartDate

date

None.

ClinicId

string

None.

ClientId

string

None.

Archived

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": "sample string 1",
  "EntityActivity": {
    "LastModifiedDate": "2025-06-23T14:41:03.1327532+00:00",
    "CreatedDate": "2025-06-23T14:41:03.1327532+00:00",
    "LastModifiedBy": "sample string 3",
    "CreatedBy": "sample string 4"
  },
  "Name": "sample string 2",
  "StartDate": "2025-06-23T14:41:03.1327532+00:00",
  "ClinicId": "sample string 4",
  "ClientId": "sample string 5",
  "Archived": true
}