Skip to main content
GET
/
v1
/
webhooks
List webhooks
curl --request GET \
  --url https://api.example.com/v1/webhooks
{
  "data": [
    {
      "key": "uLbBzVvN7ARX",
      "name": "Demo",
      "url": "https://webhook.site/dc398096-ec94-4e2e-a161-7e9969168ffe",
      "is_active": true,
      "signature": "Sjn3sNnmh14yk6zb",
      "events": [
        "partner.created"
      ]
    }
  ],
  "links": {
    "first": "https://api.partnero.com/v1/webhooks?page=1",
    "last": null,
    "prev": null,
    "next": null
  },
  "meta": {
    "current_page": 1,
    "from": 1,
    "path": "https://api.partnero.com/v1/webhooks",
    "per_page": 10,
    "to": 1
  },
  "status": 1
}

Endpoint

GET https://api.partnero.com/v1/webhooks

Query Parameters

ParameterTypeDefaultDescription
limitinteger10Number of results per page (10-100)
pageinteger1Page number for pagination

Request

cURL
curl --location 'https://api.partnero.com/v1/webhooks' \
  --header 'Accept: application/json' \
  --header 'Authorization: Bearer YOUR_API_KEY'

Response

{
  "data": [
    {
      "key": "uLbBzVvN7ARX",
      "name": "Demo",
      "url": "https://webhook.site/dc398096-ec94-4e2e-a161-7e9969168ffe",
      "is_active": true,
      "signature": "Sjn3sNnmh14yk6zb",
      "events": [
        "partner.created"
      ]
    }
  ],
  "links": {
    "first": "https://api.partnero.com/v1/webhooks?page=1",
    "last": null,
    "prev": null,
    "next": null
  },
  "meta": {
    "current_page": 1,
    "from": 1,
    "path": "https://api.partnero.com/v1/webhooks",
    "per_page": 10,
    "to": 1
  },
  "status": 1
}

Response Fields

FieldTypeDescription
dataarrayArray of webhook objects
data[].keystringUnique webhook identifier
data[].namestringWebhook name
data[].urlstringDestination URL for events
data[].is_activebooleanWhether webhook is active
data[].signaturestringSecret for verifying webhook authenticity
data[].eventsarrayList of subscribed events