Webhook

A configurable notification that submits external JSON-API-formatted HTTP requests whenever resources are modified.

action
string <= 255 characters

The action that will trigger this webhook (e.g. "*", "created", "updated", "destroyed"). Webhooks will only execute if both the action and resource match.

active
boolean

A boolean value indicating whether the webhook is active.

createdAt
string <date-time>

The date and time the webhook was created.

resource
string <= 255 characters

The resource that will trigger this webhook (e.g. "*", "prospect", "sequenceState"). Webhooks will only execute if both the action and resource match.

secret
string <= 255 characters

A private token used to verify the authenticity of incoming webhook payloads.

updatedAt
string <date-time>

The date and time the webhook was last updated.

url
string <= 1024 characters

The URL where the webhook will route its POST HTTP request.

{
}

Webhook Relationships

data (object) or links (object) (user)

The authorizer of the webhook. The webhook will not deliver results if the authorizer does not have permission to read the resource being returned. Relationship authorizer cannot be used as a filter.

data (object) or links (object) (user)

The creator of the webhook. You can use only the attribute id to filter webhooks by creator (e.g. filter[creator][id]=X).

data (object) or links (object) (user)

The most recent updater of the webhook. You can use only the attribute id to filter webhooks by updater (e.g. filter[updater][id]=X).

{
}

Webhook Resource Metadata

METADATA NAME DESCRIPTION QUERY PARAM
canWrite A boolean value indicating whether the current API user has write access to this resource. provideAuthorizationMeta
canDelete A boolean value indicating whether the current API user has delete access to this resource. provideAuthorizationMeta

⌵ Webhook Actions

Get a Collection of Webhooks

SecuritybearerAuth and s2sAuthToken
Responses
200

OK

422

JSON error message

get/webhooks
Request samples
Response samples
application/vnd.api+json
{
}

Create a New Webhook

SecuritybearerAuth and s2sAuthToken
Request
Request Body schema: application/vnd.api+json
required
object
Responses
201

Created

422

JSON error message

post/webhooks
Request samples
application/vnd.api+json
{
}
Response samples
application/vnd.api+json
{
}

Delete an Existing Webhook by ID

SecuritybearerAuth and s2sAuthToken
Request
path Parameters
id
required
integer
Responses
204

Deleted

422

JSON error message

delete/webhooks/{id}
Request samples
Response samples
application/vnd.api+json
{
}

Get a Webhook by ID

SecuritybearerAuth and s2sAuthToken
Request
path Parameters
id
required
integer
Responses
200

OK

404

Not Found

get/webhooks/{id}
Request samples
Response samples
application/vnd.api+json
{
}

Update a Webhook

SecuritybearerAuth and s2sAuthToken
Request
path Parameters
id
required
integer
Request Body schema: application/vnd.api+json
required
object
Responses
200

OK

422

JSON error message

patch/webhooks/{id}
Request samples
application/vnd.api+json
{
}
Response samples
application/vnd.api+json
{
}