Get public webhook settings
GET
/v1/settings/developer/webhooksAuthorization
bearerAuthbearerAuthrequiredor
apiKeyAuthapiKeyAuthrequiredResponses
200OK
app_idstringrequiredendpointsSettingsWebhookEndpointItem[] | nullrequiredShow propertiesHide properties
Array of
SettingsWebhookEndpointItemcreated_atstringdescriptionstringenabledbooleanrequiredevent_typesstring[] | nullrequiredidstringrequiredmasked_signing_secretstringupdated_atstringurlstringrequiredsupported_eventsSettingsWebhookSupportedEventItem[] | nullrequiredShow propertiesHide properties
Array of
SettingsWebhookSupportedEventItemcategorystringrequireddescriptionstringrequiredkeystringrequiredsample_payloadanyrequired401Unauthorized
errorErrorBodyrequiredShow propertiesHide properties
codestringrequireddetailsErrorDetail[] | nullShow propertiesHide properties
Array of
ErrorDetailcodestringfieldstringlocationstringmessagestringrequiredmessagestringrequiredrequest_idstring403Forbidden
errorErrorBodyrequiredShow propertiesHide properties
codestringrequireddetailsErrorDetail[] | nullShow propertiesHide properties
Array of
ErrorDetailcodestringfieldstringlocationstringmessagestringrequiredmessagestringrequiredrequest_idstring500Internal Server Error
errorErrorBodyrequiredShow propertiesHide properties
codestringrequireddetailsErrorDetail[] | nullShow propertiesHide properties
Array of
ErrorDetailcodestringfieldstringlocationstringmessagestringrequiredmessagestringrequiredrequest_idstringRequest
curl -X GET "/v1/settings/developer/webhooks"const response = await fetch("/v1/settings/developer/webhooks", {
method: "GET"
});import requests
response = requests.get(
"/v1/settings/developer/webhooks",
)Response
{
"app_id": "string",
"endpoints": [
{
"created_at": "string",
"description": "string",
"enabled": true,
"event_types": [
"string"
],
"id": "string",
"masked_signing_secret": "string",
"updated_at": "string",
"url": "string"
}
],
"supported_events": [
{
"category": "string",
"description": "string",
"key": "string",
"sample_payload": "string"
}
]
}{
"error": {
"code": "string",
"details": [
{
"code": "string",
"field": "string",
"location": "string",
"message": "string"
}
],
"message": "string",
"request_id": "string"
}
}{
"error": {
"code": "string",
"details": [
{
"code": "string",
"field": "string",
"location": "string",
"message": "string"
}
],
"message": "string",
"request_id": "string"
}
}{
"error": {
"code": "string",
"details": [
{
"code": "string",
"field": "string",
"location": "string",
"message": "string"
}
],
"message": "string",
"request_id": "string"
}
}