v1

latestOpenAPI 3.1.1Productboard Proprietary2026-07-2453178243.2 KB
plugin-integrations

List plugin integrations

Returns all plugin integrations for the workspace.

Paginated using cursor-based pagination. Follow links.next to fetch the next page. When links.next is null, you have reached the last page.

OAuth2 isolation: OAuth2 access tokens only see integrations created by the same OAuth2 application. Public API access tokens see all workspace integrations.

get/plugin-integrations

Query parameters

pageCursorstring

Cursor for pagination. Use the value from links.next to fetch the next page.

Response

A paginated list of plugin integrations

Example response

{
  "data": [
    {
      "id": "00000000-0000-0000-0000-000000000001",
      "type": "pluginIntegration",
      "createdAt": "2024-01-15T10:30:00.000Z",
      "fields": {
        "type": "com.example.myservice",
        "name": "My Service Integration",
        "integrationStatus": "enabled",
        "initialState": {
          "label": "Push"
        }
      },
      "links": {
        "self": "https://api.productboard.com/v2/plugin-integrations/00000000-0000-0000-0000-000000000001",
        "connections": "https://api.productboard.com/v2/plugin-integrations/00000000-0000-0000-0000-000000000001/connections"
      }
    }
  ]
}