Returns all registered webhooks

GET/unified/webhook

Parameters

limitnumber default=100
offsetnumber default=0
updated_gtedate
Return only results whose updated date is equal or greater to this value (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
sort enum
order enum
object enum
Filter the results for webhooks for only this object
integration_typestring
Filter the results to just this integration
connection_idstring
Filter the results to just this integration
created_ltedate
Return only results whose created date is equal or less to this value
envstring default=Production

Returns

Webhookarray

A webhook is used to POST new/updated information to your server.

idstring read-only
created_atdate read-only
(ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
updated_atdate read-only
(ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
workspace_idstring read-only
(reference to KmsSpace)
connection_idstring required
hook_urlstring
The URL of the webhook
object_type enum required
Valid values:
"accounting_account"
"accounting_transaction"
"accounting_journal"
"accounting_contact"
"accounting_invoice"
The object to return (eg. CRM "contact")
intervalnumber
The interval (in minutes) to check for updated/new objets.
checked_atdate read-only
The last date/time that a check was done on this object (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
integration_typestring read-only
environmentstring read-only
event enum required
Valid values:
"updated"
"created"
"deleted"
runsstring array read-only
An array of the most revent virtual webhook runs
fieldsstring
webhook_type enum
Valid values:
"virtual"
"native"
is_healthyboolean read-only
page_max_limitnumber
filtersstring dictionary of string
db_type enum
Valid values:
"mongodb"
"mysql"
"postgres"
"mssql"
"mariadb"
db_urlstring
db_schemastring
db_name_prefixstring
is_pausedboolean
is_betaboolean
const options = {
  method: 'GET',
  url: 'https://api.unified.to/unified/webhook',
  headers: {
    authorization: 'bearer .....'
  },
  params: {
    limit: 50,
    offset: 0,
    updated_gte: '2026-06-02T20:57:02.584Z',
    sort: 'updated_at',
    order: 'asc',
    object: '',
    integration_type: '',
    connection_id: '',
    created_lte: '2026-06-02T20:57:02.584Z',
    env: 'Production',
  }
};

const results = await axios.request(options);
Are we missing anything? Let us know
Was this page helpful?