List Webhooks
curl --request GET \
--url https://api.linkupapi.com/v2/webhooks \
--header 'x-api-key: <x-api-key>'{
"success": true,
"data": {
"items": [
{
"webhook_id": "6789abcdef0123456789abcd",
"account_id": "69c127c37cae0494dd827286",
"platform": "linkedin",
"url": "https://your-server.com/webhook",
"events": ["all"],
"is_active": true,
"created_at": "2025-01-15T10:30:00.000000",
"updated_at": "2025-01-15T10:30:00.000000"
}
],
"total": 1,
"limit": 1,
"offset": 0
},
"metadata": {
"action": "list_webhooks",
"credits_consumed": 0,
"timestamp": "2025-01-15T10:30:00.000000"
}
}
Webhooks (Real-Time)
List Webhooks
List all webhooks for your account
GET
/
v2
/
webhooks
List Webhooks
curl --request GET \
--url https://api.linkupapi.com/v2/webhooks \
--header 'x-api-key: <x-api-key>'{
"success": true,
"data": {
"items": [
{
"webhook_id": "6789abcdef0123456789abcd",
"account_id": "69c127c37cae0494dd827286",
"platform": "linkedin",
"url": "https://your-server.com/webhook",
"events": ["all"],
"is_active": true,
"created_at": "2025-01-15T10:30:00.000000",
"updated_at": "2025-01-15T10:30:00.000000"
}
],
"total": 1,
"limit": 1,
"offset": 0
},
"metadata": {
"action": "list_webhooks",
"credits_consumed": 0,
"timestamp": "2025-01-15T10:30:00.000000"
}
}
Retrieve all webhook configurations associated with your API key.
Header Parameters
Your API key
Response
Whether the request was successful
Show Properties
Show Properties
List of webhook objects
Show Webhook Object
Show Webhook Object
Unique identifier for the webhook
The account this webhook is attached to
Platform of the associated account (e.g.
linkedin, whatsapp)The webhook URL
Event types this webhook listens for
Whether the webhook is active
ISO 8601 creation timestamp
ISO 8601 last update timestamp
Total number of webhooks
{
"success": true,
"data": {
"items": [
{
"webhook_id": "6789abcdef0123456789abcd",
"account_id": "69c127c37cae0494dd827286",
"platform": "linkedin",
"url": "https://your-server.com/webhook",
"events": ["all"],
"is_active": true,
"created_at": "2025-01-15T10:30:00.000000",
"updated_at": "2025-01-15T10:30:00.000000"
}
],
"total": 1,
"limit": 1,
"offset": 0
},
"metadata": {
"action": "list_webhooks",
"credits_consumed": 0,
"timestamp": "2025-01-15T10:30:00.000000"
}
}
Was this page helpful?
⌘I