Documentation Index
Fetch the complete documentation index at: https://docs.linkedcamp.com/llms.txt
Use this file to discover all available pages before exploring further.
Your LinkedCamp API token.
Body Parameters
The type of blacklist entry.Available values: PROFILE_URL, JOB_TITLE, KEYWORD
The value to blacklist. Depending on the type, this could be a LinkedIn profile URL, a job title, or a keyword.
The LinkedIn account email to associate the blacklist with. Required if the user has more than one linked LinkedIn account.
Response
Whether the request was successful.
A human-readable result message.
curl -X POST https://api.linkedcamp.com/blacklists \
-H "token: YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"type": "PROFILE_URL",
"keyword": "https://www.linkedin.com/in/johndoe"
}'
{
"success": true,
"message": "Blacklist added successfully!"
}