Backend API
cURL
curl --request GET \ --url https://api.wacht.dev/ai/agents/{agent_id}/integrations \ --header 'Authorization: <api-key>'
{ "data": [ { "id": "1234567890123456789", "created_at": "2024-01-15T10:30:00Z", "updated_at": "2024-01-15T10:30:00Z", "deployment_id": "9876543210987654321", "agent_id": "1234567890123456789", "integration_type": "teams", "name": "My Slack Integration", "config": {}, "webhook_url": "https://agentlink.wacht.services/service/teams/1234567890123456789/message" } ], "has_more": true, "limit": 123, "offset": 123 }
Get all integrations for an agent with webhook URLs
API key authentication (format: Bearer {api_key})
AI Agent ID
Number of items to return
1 <= x <= 100
Number of items to skip
x >= 0
List of agent integrations
Array of items
Show child attributes
Whether there are more items
Number of items returned per page
Number of items skipped
Was this page helpful?