Skip to main content
GET
/
core
/
webhook-config
/
{webhookConfigId}
Get Webhook Config
curl --request GET \
  --url https://api.integrations.commenda.io/v4/core/webhook-config/{webhookConfigId} \
  --header 'api_key: <api-key>'
{
  "data": {
    "data": {
      "rootfi_id": 12,
      "rootfi_created_at": "2026-05-15T18:17:02.052Z",
      "rootfi_updated_at": "2026-05-15T18:17:02.052Z",
      "rootfi_organisation_id": 1,
      "webhook_type": "CONNECTION_CHANGED",
      "integration_type": null,
      "name": "Connection webhook",
      "url": "https://example.com/webhooks/rootfi",
      "state": "ENABLED",
      "topics": [],
      "headers": [
        {
          "name": "Authorization",
          "value": "Bearer secret"
        }
      ],
      "signature_header": "X-RootFi-Signature"
    }
  },
  "request_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}

Documentation Index

Fetch the complete documentation index at: https://integrations.docs.commenda.io/llms.txt

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

Retrieve a webhook config by ID.

Path Parameters

ParameterTypeDescription
webhookConfigIdintegerWebhook config ID (rootfi_id).

Response

Returns { data: { data: WebhookConfig }, request_id }.

Authorizations

api_key
string
header
required

Path Parameters

webhookConfigId
integer
required

Webhook config ID (rootfi_id).

Response

Webhook config details.

request_id
string
required
data
V4GetWebhookConfigResponse · object
required