Skip to main content
GET
/
v1
/
installs
/
{installSid}
/
courseOfferings
List Course Offerings
curl --request GET \
  --url http://api.dev.smarterproctoring.com/v1/installs/{installSid}/courseOfferings \
  --header 'token: <api-key>'
{
  "total": 123,
  "first": "<string>",
  "next": "<string>",
  "prev": "<string>",
  "last": "<string>",
  "count": 123,
  "offset": 123,
  "results": [
    {
      "sid": "<string>",
      "title": "<string>",
      "startDate": "<string>",
      "endDate": "<string>",
      "createdDate": "<string>",
      "editDate": "<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

Unique SID of the application install. Pattern: AI + 32 hex chars.

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

"AI1234567890abcdef1234567890abcdef"

Query Parameters

offset
integer

Zero-based offset for pagination. Indicates how many records to skip.

Required range: x >= 0
Example:

0

limit
integer

Maximum number of course offering records to return.

Required range: x >= 0
Example:

25

Response

200 - application/json

Successful

total
number

Total number of results

first
string | null

URL for first page

next
string | null

URL for next page

prev
string | null

URL for previous page

last
string | null

URL for last page

count
number

Number of results in this page

offset
number

Current offset

results
object[]

Course offering records