Integrations

List integrations

GET /api/v1/agents/{agentId}/integrations

List integrations

Returns integrations configured for an agent.

Parameters

Name In Type Description
agentId * path integer

Internal agent id.

Responses

Status Schema Description
200 AgentIntegration[]

Integrations configured for the agent

400 AgentError

Invalid agent id

401 AgentError

Missing or invalid auth

Example 200 response
[
    {
        "id": 1,
        "type": "string",
        "data": "string"
    }
]
Example 400 response
{
    "error": "string",
    "message": "string",
    "issues": [
        {
            "path": [
                "string"
            ],
            "message": "string",
            "code": "string"
        }
    ]
}
Example 401 response
{
    "error": "string",
    "message": "string",
    "issues": [
        {
            "path": [
                "string"
            ],
            "message": "string",
            "code": "string"
        }
    ]
}