Skip to content

allIntegrations

List the integrations of the specified types.

Arguments

Argument Type Description
integrationTypes (required) [IntegrationType!]! List of integration types.
nameFilter String Optional filter for integration names.
integrationSortBy IntegrationSortBy Optional filter for sorting integrations.
sortOrder SortOrder Sorts the order of results.

Returns

ListIntegrationsReply!

Sample

query AllIntegrations($integrationTypes: [IntegrationType!]!) {
  allIntegrations(integrationTypes: $integrationTypes)
}
{
  "integrationTypes": [
    "CROWD_STRIKE"
  ]
}
{
  "data": {
    "allIntegrations": {
      "integrations": [
        {
          "createdAt": "2024-01-01T00:00:00.000Z",
          "enabled": "DISABLED",
          "id": 0,
          "integrationType": "CROWD_STRIKE",
          "name": "example-string",
          "updatedAt": "2024-01-01T00:00:00.000Z"
        }
      ]
    }
  }
}