Webhooks
List Webhooks
API reference
- Introduction
- Authentication
- Pagination
Resources
- Identity
- Customers
- Activities
- Transactions
- Orders
- Sites
- Emails
- Webhooks
Webhooks
- Introduction
- Webhook events
Webhooks
List Webhooks
GET
/
v2
/
webhooks
Copy
curl --request GET \
--url https://api.loyaltylion.com/v2/webhooks
Copy
{
"webhooks": [
{
"id": 123,
"topic": "rewards/store_fulfilment",
"address": "https://example.com/webhook",
"created_at": "<string>",
"updated_at": "<string>",
"service_integration_id": 123
}
]
}
Response
200
application/json
200
Available options:
rewards/store_fulfilment
, customers/update
, loyalty_emails/unsubscribe
, program_events/customer.enrolled
, program_events/customer.tier_upgraded
, program_events/customer.tier_downgraded
, program_events/customer.points_earned
, program_events/customer.reward_available_notification
, program_events/customer.recurring_reward_available_reminder
, program_events/customer.claimed_reward
, program_events/customer.referral_complete
, program_events/customer.rule_completed
, program_events/customer.approaching_tier_upgrade
, program_events/customer.moved_to_at_risk_segment
, program_events/customer.moved_to_defected_segment
, program_events/customer.moved_to_loyal_segment
, program_events/customer.approaching_points_expiration
, program_events/customer.approaching_reward_expiration
The full URL which will receive webhook requests. This should start with https://
Example:
"https://example.com/webhook"
ISO 8601
timestamp indicating when the webhook was created
ISO 8601
timestamp indicating when the webhook was updated
The ID of the integration that owns this webhook, if any
Copy
curl --request GET \
--url https://api.loyaltylion.com/v2/webhooks
Copy
{
"webhooks": [
{
"id": 123,
"topic": "rewards/store_fulfilment",
"address": "https://example.com/webhook",
"created_at": "<string>",
"updated_at": "<string>",
"service_integration_id": 123
}
]
}