Absorb Integration API (v1)
Download OpenAPI specification:Download
Get course version.
Authorizations:
api_key
path Parameters
| id required | string <guid> The ID of the course version. |
header Parameters
| x-api-key | string |
| x-api-version | string 1 |
Responses
Response Schema: application/json
| id | string <guid> The unique course version identifier. |
| courseId | string <guid> The course version's course ID. |
| courseName | string The course version's course name. |
| versionNumber | string The course version's version number. |
| notes | string The course version notes. |
| dateAdded | string <date-time> The course version added date. |
Response samples
- 200
- 404
Content type
application/json
{- "id": "string",
- "courseId": "string",
- "courseName": "string",
- "versionNumber": "string",
- "notes": "string",
- "dateAdded": "2019-08-24T14:15:22Z"
}List course versions.
List all course versions for the specified course.
Authorizations:
api_key
path Parameters
| courseId required | string <guid> The ID of the course. |
header Parameters
| x-api-key | string |
| x-api-version | string 1 |
Responses
Response Schema: application/json
Array
| id | string <guid> The unique course version identifier. |
| courseId | string <guid> The course version's course ID. |
| courseName | string The course version's course name. |
| versionNumber | string The course version's version number. |
| notes | string The course version notes. |
| dateAdded | string <date-time> The course version added date. |
Response samples
- 200
- 404
Content type
application/json
[- {
- "id": "string",
- "courseId": "string",
- "courseName": "string",
- "versionNumber": "string",
- "notes": "string",
- "dateAdded": "2019-08-24T14:15:22Z"
}
]