Get

[POST] .../v1/integrationgroup/get

Returns integration groups. Use this method to list integration groups before showing available integrations grouped by business category. The response returns localized IntegrationGroup records; optional id filters narrow the lookup to selected groups while ids. The current request user must have integration select permission and names/descriptions are selected from the current user's language when available. Missing body, denied access, upstream REGOS integration metadata errors, localization fallback issues and storage failures are returned as HTTP 200 ErrorResult business errors.

Request Parameters

Name Type Required Description
filters Array of Filter Optional Optional filters by fields available for this API method.

Filterable Fields

Field Type Description
id int Integration group IDs.

Request Example

{
  "filters": [
    {
      "Field": "id",
      "Operator": "In",
      "Value": "1"
    }
  ]
}

Response Parameters

Name Type Description
ok Boolean Indicates whether the request completed successfully.
result Array of IntegrationGroup Result array.

Response Example

{
  "ok": true,
  "result": [
    {
      "id": 1,
      "name": "Messaging",
      "description": "Messaging and notification integrations",
      "image_url": "https://cdn.example.test/integrations/messaging.svg"
    }
  ]
}