1. Webhook
Einpix API documentation
  • Changelog
  • About
  • API
    • Task
      • Create
      • List
      • Detail
      • Change status
    • Checklist
      • By task
    • Client
      • Create
      • Update
      • List
      • Detail
    • User
      • List
      • Detail
    • Venue
      • Create
      • List
      • Detail
    • Category
      • Task
        • List
        • Detail
      • Equipment
        • List
    • Tag
      • List
      • Detail
    • Template
      • Checklist
        • List
        • Detail
    • Equipment
      • Create
      • Update
      • Delete
      • Change picture
      • Remove picture
      • Add attachments
      • Remove attachments
      • List
      • List by category
      • Detail
    • Comment
      • Create
      • Detail
      • List
    • Worklog
      • List
      • Hisory
    • Materials
      • By task
    • Service
      • By task
    • Webhook
      • List
        GET
      • Create
        POST
      • Delete
        DELETE
      • Update
        PUT
  • Schemas
    • User
    • Venue
    • Task
    • Task comment
    • Tag
    • Task category
    • Picture
    • Check item
    • Equipment category
    • Equipment
    • Client
    • Task severity
    • Attachment
    • Changed log
    • User group
    • WDJ material
    • Unit master
    • WDJ service
    • Worklog History
    • CountryEnum
    • Checklist template
    • Worklog
    • Activity task
    • Downtime task
    • Sla rule
    • Webhook action
    • Webhook
    • WebhookEnumm
  1. Webhook

List

GET
webhooks
Retrieves the list of all webhooks configured for the authenticated client.
This API returns all registered webhook subscriptions, including their unique names, target URLs, subscribed actions, and current status. It allows clients to review, audit, or manage existing webhook configurations.
This endpoint does not trigger any webhook events and is read-only.

Request

Header Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.einpix.com/public/v1/webhooks' \
--header 'x-api-key;'

Responses

🟢200Success
application/json
Body

Example
[
    {
        "id": "82",
        "name": "Dr. Terrence Willms",
        "url": "https://stiff-bend.us/",
        "actions": [
            {
                "id": "7",
                "action": "tasks.end_date.update"
            }
        ],
        "craeted": "2025-05-12T06:42:23.683Z",
        "updated": "2025-05-14T06:42:23.683Z"
    },
    {
        "id": "9",
        "name": "Christine Schuppe PhD",
        "url": "https://timely-reward.com/",
        "actions": [
            {
                "id": "10",
                "action": "tasks.start_date.update"
            }
        ],
        "created": "2025-05-12T06:42:23.683Z",
        "updated": "2025-05-14T06:42:23.683Z"
    },
    {
        "id": "79",
        "name": "Caroline Runte Jr.",
        "url": "https://shabby-minion.info/",
        "actions": [
            {
                "id": "16",
                "action": "tasks.create"
            },
            {
                "id": "4",
                "action": "tasks.status.update"
            }
        ],
        "created": "2025-05-12T06:42:23.683Z",
        "updated": "2025-05-14T06:42:23.683Z"
    }
]
Modified at 2026-02-20 06:51:01
Previous
Webhook
Next
Create
Built with