Skip to main content
GET
/
api
/
agent
/
integrations
Get active integrations
curl --request GET \
  --url https://api.wacht.dev/api/agent/integrations \
  --cookie session_id=
[
  {
    "id": "12345",
    "deployment_id": "111111111111111111",
    "agent_id": "67890",
    "provider": "openai",
    "config": {
      "model": "gpt-4",
      "temperature": 0.7
    },
    "consent_granted": true,
    "created_at": "2024-01-15T10:30:00Z",
    "updated_at": "2024-01-15T10:30:00Z"
  }
]

Authorizations

session_id
string
cookie
required

Session-based authentication using cookies

Response

Integrations retrieved successfully

id
string<int64>

Integration ID

Example:

"12345"

deployment_id
string<uint64>

Deployment ID

Example:

"111111111111111111"

agent_id
string<int64>

Agent ID

Example:

"67890"

provider
string

Integration provider

Example:

"openai"

config
object

Integration configuration

Example:
{ "model": "gpt-4", "temperature": 0.7 }

Whether user has granted consent

Example:

true

created_at
string<date-time>
Example:

"2024-01-15T10:30:00Z"

updated_at
string<date-time>
Example:

"2024-01-15T10:30:00Z"