GET
/
api
/
v1
/
primary_appointments
/
{id}
Show primary appointment
curl --request GET \
  --url https://api.scholarlysoftware.com/api/v1/primary_appointments/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "289f7cdd-be9d-4ce1-8149-569c50ed85ff",
    "type": "primary_appointment",
    "attributes": {
      "title": "<string>",
      "effective_from": "2023-12-25",
      "effective_to": "2023-12-25",
      "appointment_type": "<string>",
      "track_type": "<string>",
      "external_id": "<string>"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Authorization
string
required

Bearer token

Path Parameters

id
string
required

Primary appointment UUID

Response

200
application/vnd.api+json

primary appointment found without sensitive data

The response is of type object.