Skip to main content
GET
/
api
/
v1
/
appuid
/
{appUid}
/
webhooks
Retrieve webhook configurations
curl --request GET \
  --url https://a.api.mindset.ai/api/v1/appuid/{appUid}/webhooks \
  --header 'x-api-key: <api-key>'
{
  "webhooks": [
    {
      "uid": "<string>",
      "name": "<string>",
      "url": "<string>",
      "secret": "<string>",
      "entities": [
        "agent"
      ],
      "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

Query Parameters

startAfter
string<date-time>

Start after the given createdAt timestamp (ISO 8601) for pagination

Response

Successful retrieval

webhooks
object[]