Maxim Logo
Integrations

Get Integrations

Get integrations for a workspace

GET
/v1/integrations

Authorization

x-maxim-api-key<token>

API key for authentication

In: header

Query Parameters

workspaceIdRequiredstring

Unique identifier for the workspace

idstring

Integration ID to fetch specific integration

limitnumber

Maximum number of records to return (max: 100)

Default: 20Maximum: 100
cursorstring

Cursor for pagination

curl -X GET "https://api.getmaxim.ai/v1/integrations?workspaceId=%3Cstring%3E&id=%3Cstring%3E&limit=20&cursor=%3Cstring%3E" \
  -H "x-maxim-api-key: <token>"

Integrations retrieved successfully

{
  "data": [
    {
      "id": "string",
      "type": "SLACK",
      "name": "string",
      "config": {
        "property1": null,
        "property2": null
      }
    }
  ],
  "pagination": {
    "cursor": "string",
    "hasMore": true
  }
}