List webhook endpoints
GET
/v1/webhook-endpoints
const url = 'https://your-notavia-host/v1/webhook-endpoints';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://your-notavia-host/v1/webhook-endpoints \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”Webhook endpoints list.
Media type application/json
object
data
Array<object>
object
id
string format: uuid
url
string
status
string
event_filters
Array<string>
description
string
timeout_seconds
integer
signing_secret_prefix
First 8 characters of the signing secret for recognition only — full secret shown only at creation/rotation.
string
created_at
string format: date-time
Example
{ "data": [ { "status": "active" } ]}Missing or invalid credentials.
Media type application/json
object
error
required
object
type
required
string
code
required
string
message
required
string
param
string
Example generated
{ "error": { "type": "example", "code": "example", "message": "example", "param": "example" }}Credentials do not have the required scope.
Media type application/json
object
error
required
object
type
required
string
code
required
string
message
required
string
param
string
Example generated
{ "error": { "type": "example", "code": "example", "message": "example", "param": "example" }}