PUT
/
v1
/
webhooks
/
accounts
/
{account_id}
Update Webhook Account
curl --request PUT \
  --url https://api.linkupapi.com/v1/webhooks/accounts/{account_id} \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <x-api-key>' \
  --data '{
  "login_token": "<string>",
  "webhook_url": "<string>",
  "country": "<string>",
  "account_name": "<string>"
}'
{
  "id": "60f7b3b3e4b0c8a2d8e9f1a2",
  "login_token": "AQEDARCvKh...",
  "country": "US",
  "webhook_url": "https://new-webhook.com/linkedin",
  "account_name": "Updated Account Name",
  "is_active": true,
  "created_at": "2024-01-01T00:00:00Z",
  "updated_at": "2024-01-01T12:30:00Z"
}
Update the configuration of an existing 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 update

Body Parameters

login_token
string
New LinkedIn authentication token
webhook_url
string
New webhook URL for notifications
country
string
New country code for proxy selection. Available: (US, UK, FR)
account_name
string
New account name

Response

id
string
Account identifier
login_token
string
Updated LinkedIn authentication token
country
string
Updated country code
webhook_url
string
Updated webhook URL
account_name
string
Updated account name
is_active
boolean
Current monitoring status
created_at
string
Account creation timestamp
updated_at
string
Last update timestamp
{
  "id": "60f7b3b3e4b0c8a2d8e9f1a2",
  "login_token": "AQEDARCvKh...",
  "country": "US",
  "webhook_url": "https://new-webhook.com/linkedin",
  "account_name": "Updated Account Name",
  "is_active": true,
  "created_at": "2024-01-01T00:00:00Z",
  "updated_at": "2024-01-01T12:30:00Z"
}

Notes

  • All body parameters are optional - only provide the fields you want to update
  • If monitoring is active, changes will take effect immediately
  • Updating the login token may require restarting monitoring for the changes to take effect