Skip to main content
GET
/
v0
/
webhook_subscriptions
List webhook subscriptions
curl --request GET \
  --url https://api.tryarchitect.com/v0/webhook_subscriptions \
  --header 'x-api-key: <api-key>'
[
  {
    "subscriptionId": "<string>",
    "url": "<string>",
    "events": [
      "page.version.created"
    ],
    "active": true,
    "createdAt": "<string>",
    "updatedAt": "<string>"
  }
]

Authorizations

x-api-key
string
header
required

API key authentication for the External Actor Gateway

Response

200 - application/json

Successful operation

subscriptionId
string
required

Unique subscription identifier

url
string<uri>
required

URL to open when action is triggered

events
enum<string>[] | null
required
Available options:
page.version.created,
page.version.processed,
page.version.published,
form.submitted,
form.enriched,
form.enrichment_failed
active
boolean
required

Whether the subscription is active

createdAt
string
required
Minimum string length: 1
Pattern: ^accountlog_[a-z0-9]{26}$
updatedAt
string
required
Minimum string length: 1
Pattern: ^accountlog_[a-z0-9]{26}$