Skip to main content
GET
/
v2
/
meetings
Get metadata on all Meetings
curl --request GET \
  --url https://api.affinity.co/v2/meetings \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 4503599627370496,
      "loggingType": "automated",
      "title": "<string>",
      "startTime": "2023-11-07T05:31:56Z",
      "endTime": "2023-11-07T05:31:56Z",
      "allDay": true,
      "creator": {
        "emailAddress": "[email protected]",
        "person": {
          "id": 4503599627370496,
          "firstName": "<string>",
          "lastName": "<string>",
          "primaryEmailAddress": "[email protected]",
          "type": "internal"
        }
      },
      "organizer": {
        "emailAddress": "[email protected]",
        "person": {
          "id": 4503599627370496,
          "firstName": "<string>",
          "lastName": "<string>",
          "primaryEmailAddress": "[email protected]",
          "type": "internal"
        }
      },
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "attendeesPreview": {
        "data": [
          {
            "emailAddress": "[email protected]",
            "person": {
              "id": 4503599627370496,
              "firstName": "<string>",
              "lastName": "<string>",
              "primaryEmailAddress": "[email protected]",
              "type": "internal"
            }
          }
        ],
        "totalCount": 4503599627370495
      }
    }
  ],
  "pagination": {
    "prevUrl": "<string>",
    "nextUrl": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

cursor
string

Cursor for the next or previous page

Example:

"ICAgICAgYmVmb3JlOjo6Nw"

limit
integer<int32>
default:100

Number of items to include in the page

Required range: 1 <= x <= 100
Example:

100

filter
string

Filter options

Response

OK

MeetingPaged model

data
interactions.Meeting · object[]
required

A page of Meeting results

Maximum array length: 100
pagination
Pagination · object
required
Example:
{
"prevUrl": "https://api.affinity.co/v2/foo?cursor=ICAgICAgYmVmb3JlOjo6Nw",
"nextUrl": "https://api.affinity.co/v2/foo?cursor=ICAgICAgIGFmdGVyOjo6NA"
}