Skip to main content
GET
/
webhooks
List webhooks
curl --request GET \
  --url https://sandbox.nmbr.co/services/payroll/webhooks \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "data": [
    {
      "id": "<id>",
      "object": "webhook",
      "data": {
        "url": "http://localhost/webhooks",
        "key": "<token>",
        "is_enabled": true,
        "events": [
          "resource_created",
          "resource_updated",
          "resource_deleted",
          "payroll_approved",
          "payroll_unapproved",
          "payroll_paid",
          "payroll_deadline_upcoming",
          "pay_stub_available",
          "async_task_completed",
          "form_batch_completed",
          "integration_authentication_success",
          "integration_authentication_failure",
          "integration_sync_account_codes_complete",
          "integration_sync_account_codes_failure",
          "integration_sync_journal_entries_complete",
          "integration_sync_journal_entries_failure",
          "integration_sync_tags_complete",
          "integration_sync_tags_failure"
        ],
        "created_at": "2026-01-01T00:00:00.000000Z",
        "updated_at": "2026-01-01T00:00:00.000000Z"
      },
      "links": {
        "self": "/webhooks/<id>"
      }
    }
  ],
  "links": {
    "first": "/webhooks?events%5B0%5D=resource_created&events%5B1%5D=resource_updated&events%5B2%5D=resource_deleted&events%5B3%5D=payroll_approved&events%5B4%5D=payroll_unapproved&events%5B5%5D=payroll_paid&events%5B6%5D=payroll_deadline_upcoming&events%5B7%5D=pay_stub_available&events%5B8%5D=async_task_completed&events%5B9%5D=form_batch_completed&events%5B10%5D=integration_authentication_success&events%5B11%5D=integration_authentication_failure&events%5B12%5D=integration_sync_account_codes_complete&events%5B13%5D=integration_sync_account_codes_failure&events%5B14%5D=integration_sync_journal_entries_complete&events%5B15%5D=integration_sync_journal_entries_failure&events%5B16%5D=integration_sync_tags_complete&events%5B17%5D=integration_sync_tags_failure&page=1",
    "last": "/webhooks?events%5B0%5D=resource_created&events%5B1%5D=resource_updated&events%5B2%5D=resource_deleted&events%5B3%5D=payroll_approved&events%5B4%5D=payroll_unapproved&events%5B5%5D=payroll_paid&events%5B6%5D=payroll_deadline_upcoming&events%5B7%5D=pay_stub_available&events%5B8%5D=async_task_completed&events%5B9%5D=form_batch_completed&events%5B10%5D=integration_authentication_success&events%5B11%5D=integration_authentication_failure&events%5B12%5D=integration_sync_account_codes_complete&events%5B13%5D=integration_sync_account_codes_failure&events%5B14%5D=integration_sync_journal_entries_complete&events%5B15%5D=integration_sync_journal_entries_failure&events%5B16%5D=integration_sync_tags_complete&events%5B17%5D=integration_sync_tags_failure&page=1",
    "prev": null,
    "next": null
  },
  "meta": {
    "current_page": 1,
    "last_page": 1,
    "per_page": 15,
    "total": 1,
    "has_more": false
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

OK

object
string
read-only

The type of the object in Nmbr ("list").

data
object[]