Skip to main content
PATCH
/
admin
/
api
/
v1
/
integrations
/
{integration_id}
Patch Integration
curl --request PATCH \
  --url https://api.example.com/admin/api/v1/integrations/{integration_id} \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "enabled": true,
  "integration": {
    "config": {
      "accessToken": "<string>",
      "phoneNumberId": "<string>",
      "verifyToken": "<string>",
      "apiVersion": "v21.0"
    },
    "enabled": true
  }
}
'
{
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "slug": "<string>",
    "name": "<string>",
    "enabled": true,
    "integration": {
      "config": {
        "accessToken": "<string>",
        "phoneNumberId": "<string>",
        "verifyToken": "<string>",
        "apiVersion": "v21.0"
      },
      "enabled": true
    },
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  },
  "reload": {
    "message": "<string>",
    "error": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.idun-group.com/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

integration_id
string<uuid>
required

Body

application/json

Body for PATCH /admin/api/v1/integrations/{id}.

The row-level enabled is the single source of truth at assembly; the inner IntegrationConfig.enabled field is ignored and overwritten at assembly time (Phase 4+).

name
string | null
enabled
boolean | null
integration
IntegrationConfig · object

Top-level integration configuration.

Each integration binds an external messaging provider to the agent. When the engine starts, it registers webhook endpoints for each enabled integration.

Response

Successful Response

data
StandaloneIntegrationRead · object
required

GET response and the data payload of POST/PATCH/DELETE responses.

reload
StandaloneReloadResult · object
required

Reload outcome attached to every admin mutation response.

reloaded means DB committed and runtime now uses the new config. restart_required means DB committed and process restart is needed. reload_failed means DB rolled back and runtime is unchanged.

Last modified on May 22, 2026