GET
/
v1
/
webhooks
/
accounts
/
{account_id}
/
status
Check Monitoring Status
curl --request GET \
  --url https://api.linkupapi.com/v1/webhooks/accounts/{account_id}/status \
  --header 'x-api-key: <x-api-key>'
{
  "account_id": "60f7b3b3e4b0c8a2d8e9f1a2",
  "is_active": true,
  "message": "Monitoring is active"
}
Retrieve the current monitoring status for a registered LinkedIn webhook account.

Header Parameters

x-api-key
string
required
Your API key

Path Parameters

account_id
string
required
The ID of the account to check

Response

account_id
string
The account ID being checked
is_active
boolean
Current monitoring status
message
string
Status description message
{
  "account_id": "60f7b3b3e4b0c8a2d8e9f1a2",
  "is_active": true,
  "message": "Monitoring is active"
}

Notes

  • Use this endpoint to verify if monitoring is currently active
  • is_active: true means webhooks are being sent in real-time
  • is_active: false means no webhooks will be delivered