Skip to main content
GET
/
api
/
v1
/
appuid
/
{appUid}
/
webhooks
/
uid
/
{uid}
Retrieve a webhook by UID
curl --request GET \
  --url https://a.api.mindset.ai/api/v1/appuid/{appUid}/webhooks/uid/{uid} \
  --header 'x-api-key: <api-key>'
{
  "uid": "<string>",
  "name": "<string>",
  "url": "<string>",
  "secret": "<string>",
  "entities": [
    "<string>"
  ],
  "active": true,
  "createdAt": "2023-11-07T05:31:56Z"
}

Authorizations

x-api-key
string
header
required

Path Parameters

appUid
string
required

Your application's uid

Minimum string length: 1
uid
string
required

Unique ID of the webhook

Response

Successful retrieval

uid
string

Unique ID of the webhook

name
string

Descriptive name for the webhook

url
string

Webhook endpoint URL

secret
string

HMAC secret for signature validation

entities
string[]

Entity types to monitor

active
boolean

Whether the webhook is active

createdAt
string<date-time>

Creation timestamp (ISO 8601)