Paginate through all Meetings in Affinity. Returns basic information about past and future meeting interactions and its attendees.
You can filter meetings using the filter query parameter. The filter parameter is a string that you can specify conditions based on the following properties.
| Property Name | Description | Type | Allowed Operators | Examples |
|---|---|---|---|---|
id |
Unique identifier for Meetings | int64 |
= |
id=1 |
startTime |
Start time of when Meeting was scheduled | datetime |
>, <, >=, <= |
startTime>2025-01-01T01:00:00Z |
createdAt |
When the Meeting was created in Affinity | datetime |
>, <, >=, <= |
createdAt<2025-01-01T01:00:00Z |
updatedAt |
When the Meeting was updated in Affinity | datetime |
>, <, >=, <= |
updatedAt>=2025-01-01T01:00:00Z |
OK
Bad Request
Errors
{- "data": [
- {
- "id": 1,
- "loggingType": "automated",
- "title": "Example title",
- "startTime": "2023-01-01T00:00:00Z",
- "endTime": "2023-01-01T00:00:00Z",
- "allDay": false,
- "creator": {
- "emailAddress": "john.smith@contoso.com",
- "person": {
- "id": 1,
- "firstName": "Jane",
- "lastName": "Doe",
- "primaryEmailAddress": "jane.doe@acme.co",
- "type": "internal"
}
}, - "organizer": {
- "emailAddress": "john.smith@contoso.com",
- "person": {
- "id": 1,
- "firstName": "Jane",
- "lastName": "Doe",
- "primaryEmailAddress": "jane.doe@acme.co",
- "type": "internal"
}
}, - "createdAt": "2023-01-01T00:00:00Z",
- "updatedAt": "2023-01-01T00:00:00Z",
- "attendeesPreview": {
- "data": [
- {
- "emailAddress": "john.smith@contoso.com",
- "person": {
- "id": 1,
- "firstName": "Jane",
- "lastName": "Doe",
- "primaryEmailAddress": "jane.doe@acme.co",
- "type": "internal"
}
}
], - "totalCount": 200
}
}
], - "pagination": {
}
}