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"
}'
import requests
response = requests.post(
"https://api.linkedcamp.com/blacklists",
headers={"token": "YOUR_API_TOKEN"},
json={
"type": "PROFILE_URL",
"keyword": "https://www.linkedin.com/in/johndoe",
},
)
print(response.json())
const response = await fetch("https://api.linkedcamp.com/blacklists", {
method: "POST",
headers: {
"token": "YOUR_API_TOKEN",
"Content-Type": "application/json",
},
body: JSON.stringify({
type: "PROFILE_URL",
keyword: "https://www.linkedin.com/in/johndoe",
}),
});
const data = await response.json();
console.log(data);
{
"success": true,
"message": "Blacklist added successfully!"
}
{
"success": false,
"message": "Invalid type (Possible Values: PROFILE_URL, JOB_TITLE, KEYWORD)"
}
Blacklists
Create Blacklist
Add a blacklist entry to prevent outreach to specific profiles, job titles, or keywords.
POST
/
blacklists
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"
}'
import requests
response = requests.post(
"https://api.linkedcamp.com/blacklists",
headers={"token": "YOUR_API_TOKEN"},
json={
"type": "PROFILE_URL",
"keyword": "https://www.linkedin.com/in/johndoe",
},
)
print(response.json())
const response = await fetch("https://api.linkedcamp.com/blacklists", {
method: "POST",
headers: {
"token": "YOUR_API_TOKEN",
"Content-Type": "application/json",
},
body: JSON.stringify({
type: "PROFILE_URL",
keyword: "https://www.linkedin.com/in/johndoe",
}),
});
const data = await response.json();
console.log(data);
{
"success": true,
"message": "Blacklist added successfully!"
}
{
"success": false,
"message": "Invalid type (Possible Values: PROFILE_URL, JOB_TITLE, KEYWORD)"
}
Headers
string
required
Your LinkedCamp API token.
Body Parameters
string
required
The type of blacklist entry.Available values:
PROFILE_URL, JOB_TITLE, KEYWORDstring
required
The value to blacklist. Depending on the type, this could be a LinkedIn profile URL, a job title, or a keyword.
string
The LinkedIn account email to associate the blacklist with. Required if the user has more than one linked LinkedIn account.
Response
boolean
Whether the request was successful.
string
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"
}'
import requests
response = requests.post(
"https://api.linkedcamp.com/blacklists",
headers={"token": "YOUR_API_TOKEN"},
json={
"type": "PROFILE_URL",
"keyword": "https://www.linkedin.com/in/johndoe",
},
)
print(response.json())
const response = await fetch("https://api.linkedcamp.com/blacklists", {
method: "POST",
headers: {
"token": "YOUR_API_TOKEN",
"Content-Type": "application/json",
},
body: JSON.stringify({
type: "PROFILE_URL",
keyword: "https://www.linkedin.com/in/johndoe",
}),
});
const data = await response.json();
console.log(data);
{
"success": true,
"message": "Blacklist added successfully!"
}
{
"success": false,
"message": "Invalid type (Possible Values: PROFILE_URL, JOB_TITLE, KEYWORD)"
}
