Skip to main content
GET
/
v1
/
installs
/
{installSid}
/
reports
/
appointments
List Appointments
curl --request GET \
  --url http://api.dev.smarterproctoring.com/v1/installs/{installSid}/reports/appointments \
  --header 'token: <api-key>'
{
  "total": 123,
  "first": "<string>",
  "next": "<string>",
  "prev": "<string>",
  "last": "<string>",
  "count": 123,
  "offset": 123,
  "results": [
    {
      "sid": "<string>",
      "status": "<string>",
      "appointmentDate": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://developers.smarterservices.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

token
string
header
required

Path Parameters

installSid
string
required

Install Sid

Pattern: ^AI[a-f0-9]{32}$

Query Parameters

offset
integer

Result offset

Required range: x >= 0
limit
integer

Number of items to return

Required range: x >= 0
courseSid
string

Course sid

Pattern: ^CU[a-f0-9]{32}$
examSid
string

Exam sid

Pattern: ^EX[a-f0-9]{32}$
courseOfferingSid
string

Course offering sid

Pattern: ^CO[a-f0-9]{32}$
type
enum<string>

Type of the appointment

Available options:
b-virtual,
examity,
proctoru,
register-blast,
instructor-as-proctor,
messaging,
ad-hoc,
vtc,
automated
status
enum<string>

Status of the appointment

Available options:
Needs Proctor,
Scheduled,
Cancelled,
In Progress,
Closed
reviewStatus
enum<string>

If the session needs to be reviewed and/or if it has been reviewed.

Available options:
pending,
complete,
not-required
examStatus
enum<string>

Status of the exam

Available options:
active,
draft,
deleted
appointmentAfter
string

Appointments after date

Pattern: .*Z
Example:

"1970-01-01T00:00:00.000Z"

appointmentBefore
string

Appointments before date

Pattern: .*Z
Example:

"1970-01-01T00:00:00.000Z"

learnerFirstName
string

learner first name

Pattern: ^[^%]*$
learnerLastName
string

Learners last name

Pattern: ^[^%]*$
learnerEmail
string

Learners email

Pattern: ^[^%]*$
learnerSid
string

Learners sid

Pattern: ^[^%]*$
courseTitle
string

Course title

Pattern: ^[^%]*$
examTitle
string

Exam title

Pattern: ^[^%]*$

Response

200 - application/json

Successful

total
number | null
first
string | null
next
string | null
prev
string | null
last
string | null
count
number | null
offset
number | null
results
object[]