Skip to main content
GET
/
integrations
/
v2
/
integrations
List Integrations
curl --request GET \
  --url https://api-qa.interactly.ai/integrations/v2/integrations \
  --header 'Authorization: Bearer <token>'
{
  "integrations": [
    {
      "teamId": "5eb7cf5a86d9755df3a6c593",
      "createdBy": "5eb7cf5a86d9755df3a6c593",
      "updatedBy": "5eb7cf5a86d9755df3a6c593",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "_id": "5eb7cf5a86d9755df3a6c593",
      "logicalId": "<string>",
      "provider": "microsoft",
      "name": "<string>",
      "status": "active",
      "access": "team",
      "config": {
        "scope": "<string>",
        "accessToken": "<string>",
        "refreshToken": "<string>",
        "tokenType": "<string>",
        "expiresAt": "2023-11-07T05:31:56Z",
        "connectedAt": "2023-11-07T05:31:56Z",
        "renewedAt": "2023-11-07T05:31:56Z",
        "errorMessage": "<string>",
        "provider": "microsoft",
        "authType": "oauth",
        "authUserEmail": "<string>",
        "authUserName": "<string>"
      },
      "timezone": "UTC"
    }
  ],
  "total": 123
}

Authorizations

Authorization
string
header
required

Retrieve your API Key from Dashboard API Keys Section.

Query Parameters

filters
IntegrationsFilters · object
required
size
integer
default:100

Number of items per page

Required range: x >= 1
page
integer
default:1

Page number

Required range: x >= 1
search
string | null

Search keywords

start
string<date-time> | null

Filter by start time (ISO 8601 format)

end
string<date-time> | null

Filter by end time (ISO 8601 format)

Response

Successful Response

Response model for a list of integrations. Contains a list of IntegrationsModel objects.

integrations
IntegrationsModel · object[]

List of integrations

total
integer | null

Total number of integrations available without pagination.