Skip to main content
GET
/
v1
/
webhooks
/
{webhook}
/
activities
/
{activity}
Get a webhook activity
curl --request GET \
  --url https://api.givebutter.com/v1/webhooks/{webhook}/activities/{activity} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "webhook_id": "<string>",
  "status": "<string>",
  "status_description": "<string>",
  "event": "<string>",
  "url": "<string>",
  "payload": [
    "<unknown>"
  ],
  "response": [
    "<unknown>"
  ],
  "created_at": "<string>",
  "updated_at": "<string>"
}

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

activity
string
required

The activity ID

Response

WebhookActivityResource

id
string
required
webhook_id
string
required
status
string
required
status_description
string
required
event
string
required
url
string
required
payload
any[]
required
response
any[] | null
required
created_at
string
required
updated_at
string
required