Get registered webhooks

Retrieve the webhooks, if any, set for the authenticated account

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

Retrieve all webhooks registered for your account.

Example Request

curl https://api.neutron.me/api/v2/webhook \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"

Example Response (webhook registered)

{
  "data": [
    {
      "id": "01e2a3dc-0c34-4e14-92e4-b270c4778d95",
      "callback": "https://yourapp.com/webhooks/neutron",
      "createdAt": 1747889654376
    }
  ]
}

Example Response (no webhook)

{
  "data": []
}

If no webhook is set, the response returns an empty array.

Response Fields

FieldTypeDescription
data[].idstringWebhook ID — use for update or remove
data[].callbackstringThe callback URL receiving events
data[].createdAtintegerCreation timestamp (epoch milliseconds)
📘

The secret is never returned in API responses for security. If you've lost your webhook secret, update the webhook with a new one.

Related

Responses

401

Unauthorized - Invalid or missing authentication credentials

Language
Credentials
Bearer
JWT
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json