Skip to main content
GET
/
webhooks
/
{webhook}
/
activities
Return a list of webhook activities
curl --request GET \
  --url https://api.givebutter.com/v1/webhooks/{webhook}/activities \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "webhook_id": "<string>",
      "status": "<string>",
      "status_description": "<string>",
      "event": "<string>",
      "url": "<string>",
      "payload": [
        "<unknown>"
      ],
      "response": [
        "<unknown>"
      ],
      "created_at": "<string>",
      "updated_at": "<string>"
    }
  ],
  "links": {
    "first": "<string>",
    "last": "<string>",
    "prev": "<string>",
    "next": "<string>"
  },
  "meta": {
    "current_page": 2,
    "from": 2,
    "last_page": 2,
    "links": [
      {
        "url": "<string>",
        "label": "<string>",
        "active": true
      }
    ],
    "path": "<string>",
    "per_page": 1,
    "to": 2,
    "total": 1
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

webhook
string
required

The webhook ID

Query Parameters

perPage
string
default:25

Response

Paginated set of WebhookActivityResource

data
WebhookActivityResource · object[]
required
meta
object
required