GET
/
v1
/
webhooks
/
{webhookId}
Get Webhook
curl --request GET \
  --url https://api.sigmamind.ai/v1/webhooks/{webhookId} \
  --header 'X-API-Key: <api-key>'
{
  "webhookId": "wh_BUbkx3PsbzQm5V10",
  "name": "My Webhook",
  "agentId": "D5D0p7TUs66TTAEAx",
  "active": true,
  "events": [
    "conversation_started, conversation_ended, conversation_analyzed"
  ],
  "url": "<string>"
}

Authorizations

X-API-Key
string
header
required

API Key is required in header. You can find it in the settings

Path Parameters

webhookId
string
required

A unique identifier for the webhook.

Response

OK

webhookId
string

A unique identifier for the webhook.

Example:

"wh_BUbkx3PsbzQm5V10"

name
string

The display name of the webhook for easy identification.

Example:

"My Webhook"

agentId
string

The unique identifier of the agent to which the webhook is assigned.

Example:

"D5D0p7TUs66TTAEAx"

active
boolean

Indicates whether the webhook is currently active and able to receive events.

Example:

true

events
enum<string>[]

Specifies the list of events that trigger the webhook.

url
string