linkedin_ads_delete_preference
Delete LinkedIn Ads Preference
LinkedinDescription
Delete a stored preference for a LinkedIn Ads entity by key. No-op if the preference doesn't exist.
DestructiveIdempotent
Usage
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "linkedin_ads_delete_preference",
"arguments": {
"entity_type": "campaign",
"entity_id": "987654321",
"key": "budget_alert_threshold",
"reason": "User no longer wants budget alerts for this campaign"
}
}
}
hopkin linkedin preference delete
| Flag | Type | Required | Description |
|---|---|---|---|
--entity-type | string | Required | Type of ad entity: ad_account, campaign, ad_set, or ad |
--entity-id | string | Required | The platform entity ID |
--key | string | Required | The preference key to delete |
{
"mcpServers": {
"linkedin-ads": {
"url": "https://mcp.hopkin.ai/linkedin-ads/mcp",
"transport": "sse"
}
}
}
- Delete pref
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
entity_type |
string |
Required | Type of ad entity: ad_account, campaign, ad_set, or adad_account campaign ad_set ad |
entity_id |
string |
Required | The platform entity IDminLength: 1 |
key |
string |
Required | The preference key to deleteminLength: 1 |
reason |
string |
Required | Why this tool call is neededminLength: 1, maxLength: 500 |
Examples
Delete pref
{
"entity_type": "campaign",
"entity_id": "987654321",
"key": "budget_alert_threshold",
"reason": "User no longer wants budget alerts for this campaign"
}
hopkin linkedin preference delete --entity-type campaign --entity-id 987654321 --key budget_alert_threshold