Integrations
Delete integration
DELETE
/api/v1/agents/{agentId}/integrations/{integrationId}
Delete integration
Deletes or disables an integration for an agent.
Parameters
| Name | In | Type | Description |
|---|---|---|---|
agentId * |
path | integer | Internal agent id. |
integrationId * |
path | integer | Internal integration id. |
Responses
| Status | Schema | Description |
|---|---|---|
200 |
AgentIntegration | Integration deleted |
400 |
AgentError | Invalid agent or integration id |
401 |
AgentError | Missing or invalid auth |
404 |
AgentError | Integration not found |
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"
}
]
}
Example 404 response
{
"error": "string",
"message": "string",
"issues": [
{
"path": [
"string"
],
"message": "string",
"code": "string"
}
]
}