Absorb Integration API (v2)
Download OpenAPI specification:Download
Get session schedule.
Authorizations:
path Parameters
id required | string <guid> The ID of the session schedule. |
header Parameters
x-api-key | string |
x-api-version | string 2 |
Responses
Response Schema: application/json
id | string <guid> The unique session schedule identifier. |
sessionId | string <guid> The session schedule's session ID. |
venueId | string <guid> The session schedule's venue ID. |
venueType | integer Enum: 0 1 2 3 4 5 6 7 8 The session schedule's venue type. Possible Enum Values: |
venueName | string The session schedule's venue name. |
dateStart | string <date-time> The session schedule's starting date. |
dateEnd | string <date-time> The session schedule's end date. |
timeZoneId | string The session schedule's time zone ID. |
meetingId | string The session schedule's meeting ID. |
meetingUsername | string The session schedule's meeting username. |
meetingPassword | string The session schedule's meeting password. |
Response samples
- 200
- 404
{- "id": "string",
- "sessionId": "string",
- "venueId": "string",
- "venueType": 0,
- "venueName": "string",
- "dateStart": "2019-08-24T14:15:22Z",
- "dateEnd": "2019-08-24T14:15:22Z",
- "timeZoneId": "string",
- "meetingId": "string",
- "meetingUsername": "string",
- "meetingPassword": "string"
}
List session schedules.
Authorizations:
query Parameters
_filter | string One or more filter operations to be performed on the collection. The referenced fields must allow filtering. See the respective report's schema for which fields can be filtered. Supports most of the OData filter syntax. Supported operations: * eq, * ne, * gt, * ge, * lt, * le, * and, * or, * not, * () Supported functions: * substringof('value',fieldName), * endswith(fieldName,'value'), * startswith(fieldName,'value'), * tolower(fieldName), * toupper(fieldName) Examples:
|
_sort | string Optional list of comma-separated fields to sort the collection by. The referenced fields must allow sorting. See the respective report's schema for which fields can be sorted. If not specified, all report fields are returned. To sort in a descending manner, prefix the field name with |
_limit | string The maximum number of items to return in the current page of the collection. |
_offset | string The number of pages to offset into the collection. |
header Parameters
x-api-key | string |
x-api-version | string 2 |
Responses
Response Schema: application/json
totalItems | integer <int32> The total number of items in the unbounded collection |
returnedItems | integer <int32> The number of items in the bound collection being returned |
limit | integer <int32> The current page size for the collection |
offset | integer <int32> The current offset for the collection |
Array of objects (SessionScheduleResource) The paged collection of resources. |
Response samples
- 200
- 422
{- "totalItems": 0,
- "returnedItems": 0,
- "limit": 0,
- "offset": 0,
- "sessionSchedules": [
- {
- "id": "string",
- "sessionId": "string",
- "venueId": "string",
- "venueType": 0,
- "venueName": "string",
- "dateStart": "2019-08-24T14:15:22Z",
- "dateEnd": "2019-08-24T14:15:22Z",
- "timeZoneId": "string",
- "meetingId": "string",
- "meetingUsername": "string",
- "meetingPassword": "string"
}
]
}