Skip to main content
POST
/
api
/
public
/
v1
/
webhooks
/
Create Webhook
curl --request POST \
  --url https://api.userintuition.ai/api/public/v1/webhooks/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "hook_url": "<string>"
}
'
{
  "id": "<string>",
  "hook_url": "<string>",
  "signing_secret": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Authenticate with an API key (prefixed ui_sk_) or a JWT token from the dashboard.

Body

application/json
hook_url
string
required

Webhook URL to receive completed-interview data for every study in your account

Response

Successful Response

id
string
required
hook_url
string
required
signing_secret
string | null

HMAC secret for verifying delivery signatures. Returned once, at creation — store it securely; it is never shown again.

created_at
string<date-time> | null
updated_at
string<date-time> | null