View Categories

List webhook subscriptions

< 1 min read

GET/webhooks

Code Samples #

  • 💻 cURL
  • 📄 JavaScript
  • 🐍 Python
  • 🐘 PHP
  • 🔷 C#
  • Java
Copy
curl --request GET \
  --url 'https://api.taskflow.example.com/v2/webhooks' \
  --header 'Authorization: Bearer YOUR_TOKEN'

Response #

Copy
[
    {
        "id": "123e4567-e89b-12d3-a456-426614174000",
        "url": "https://example.com",
        "events": [
            "string"
        ]
    }
]

Responses #

200 — Subscriptions #

FieldTypeRequiredDescription
[].idstring (uuid)Optional
[].urlstring (uri)Optional
[].eventsarray of stringOptional
📋
Example 200 response
Copy
[
    {
        "id": "123e4567-e89b-12d3-a456-426614174000",
        "url": "https://example.com",
        "events": [
            "string"
        ]
    }
]

Powered by BetterDocs

Leave a Reply

Your email address will not be published. Required fields are marked *

This site is registered on wpml.org as a development site. Switch to a production site key to remove this banner.