Skip to main content
GET
/
apps
/
{app_id}
/
webhooks
[
  {
    "id": "<string>",
    "url": "https://example.com/webhook",
    "created_at": "2023-12-25",
    "updated_at": "2023-12-25",
    "events": [
      "record.created",
      "record.completed"
    ]
  }
]

Path Parameters

app_id
string
required

The ID of the app

Query Parameters

page
number

Page number

take
number

Number of items to take

next
string

Next page token (Only used on special endpoints)

Response

200 - application/json

An array of webhooks.

id
string
required

Unique identifier for the webhook

url
string<uri>
required

URL to which the webhook will send POST requests

Example:

"https://example.com/webhook"

created_at
string<date> | null
required

Timestamp when the webhook was created

updated_at
string<date> | null
required

Timestamp when the webhook was last updated

events
enum<string>[]
required

List of events that trigger the webhook

Example:
["record.created", "record.completed"]
I