Manage Social Engagement Monitored Profile
curl --request POST \
--url https://api.example.com/api/public/tools/manage_social_engagement_monitored_profile \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"linkedinUrl": null,
"loadHistory": null,
"profileId": null,
"enableSocialEngagement": null
}
'import requests
url = "https://api.example.com/api/public/tools/manage_social_engagement_monitored_profile"
payload = {
"linkedinUrl": None,
"loadHistory": None,
"profileId": None,
"enableSocialEngagement": None
}
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
linkedinUrl: null,
loadHistory: null,
profileId: null,
enableSocialEngagement: null
})
};
fetch('https://api.example.com/api/public/tools/manage_social_engagement_monitored_profile', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/api/public/tools/manage_social_engagement_monitored_profile",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'linkedinUrl' => null,
'loadHistory' => null,
'profileId' => null,
'enableSocialEngagement' => null
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/api/public/tools/manage_social_engagement_monitored_profile"
payload := strings.NewReader("{\n \"linkedinUrl\": null,\n \"loadHistory\": null,\n \"profileId\": null,\n \"enableSocialEngagement\": null\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.example.com/api/public/tools/manage_social_engagement_monitored_profile")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"linkedinUrl\": null,\n \"loadHistory\": null,\n \"profileId\": null,\n \"enableSocialEngagement\": null\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/public/tools/manage_social_engagement_monitored_profile")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"linkedinUrl\": null,\n \"loadHistory\": null,\n \"profileId\": null,\n \"enableSocialEngagement\": null\n}"
response = http.request(request)
puts response.read_body{
"error": "<string>",
"message": "<string>",
"traceId": "<string>"
}{
"error": "<string>",
"message": "<string>",
"traceId": "<string>"
}{
"error": "<string>",
"message": "<string>",
"traceId": "<string>"
}{
"error": "<string>",
"message": "<string>",
"traceId": "<string>"
}{
"error": "<string>",
"message": "<string>",
"traceId": "<string>"
}{
"error": "<string>",
"message": "<string>",
"traceId": "<string>"
}{
"error": "<string>",
"message": "<string>",
"traceId": "<string>"
}{
"error": "<string>",
"message": "<string>",
"traceId": "<string>"
}FirstTouch tools
Manage Social Engagement Monitored Profile
Adds, activates, deactivates, or deletes one Social Engagement monitored LinkedIn profile or company page for the current team.
Detailed usage guidance
- Requires team owner/admin access.
- Use action=add with linkedinUrl as the first write when the user asks to listen to or monitor a person’s LinkedIn post likes/comments or a company page’s LinkedIn post likes/comments.
- For requests like monitor this profile or company page and send connection requests to everyone who engaged, add the monitored target first and then follow the response nextSteps.
- Set enableSocialEngagement=true when the user wants to start collecting engagers in the same tool; collected engagers wait until the linked Social Engagement flow is published before entering it.
- The response includes socialEngagement.flowPlan for the existing linked flow to inspect/edit/publish, so a separate get_social_engagement_config call is only needed when current state may have changed.
- Use write_social_engagement_config as the backup/follow-up enablement tool.
- Use activate/deactivate/delete with profileId from list_social_engagement_monitored_profiles.
- Adding or activating requires paid non-trial Social Engagement access.
POST
/
api
/
public
/
tools
/
manage_social_engagement_monitored_profile
Manage Social Engagement Monitored Profile
curl --request POST \
--url https://api.example.com/api/public/tools/manage_social_engagement_monitored_profile \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"linkedinUrl": null,
"loadHistory": null,
"profileId": null,
"enableSocialEngagement": null
}
'import requests
url = "https://api.example.com/api/public/tools/manage_social_engagement_monitored_profile"
payload = {
"linkedinUrl": None,
"loadHistory": None,
"profileId": None,
"enableSocialEngagement": None
}
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
linkedinUrl: null,
loadHistory: null,
profileId: null,
enableSocialEngagement: null
})
};
fetch('https://api.example.com/api/public/tools/manage_social_engagement_monitored_profile', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/api/public/tools/manage_social_engagement_monitored_profile",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'linkedinUrl' => null,
'loadHistory' => null,
'profileId' => null,
'enableSocialEngagement' => null
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/api/public/tools/manage_social_engagement_monitored_profile"
payload := strings.NewReader("{\n \"linkedinUrl\": null,\n \"loadHistory\": null,\n \"profileId\": null,\n \"enableSocialEngagement\": null\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.example.com/api/public/tools/manage_social_engagement_monitored_profile")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"linkedinUrl\": null,\n \"loadHistory\": null,\n \"profileId\": null,\n \"enableSocialEngagement\": null\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/public/tools/manage_social_engagement_monitored_profile")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"linkedinUrl\": null,\n \"loadHistory\": null,\n \"profileId\": null,\n \"enableSocialEngagement\": null\n}"
response = http.request(request)
puts response.read_body{
"error": "<string>",
"message": "<string>",
"traceId": "<string>"
}{
"error": "<string>",
"message": "<string>",
"traceId": "<string>"
}{
"error": "<string>",
"message": "<string>",
"traceId": "<string>"
}{
"error": "<string>",
"message": "<string>",
"traceId": "<string>"
}{
"error": "<string>",
"message": "<string>",
"traceId": "<string>"
}{
"error": "<string>",
"message": "<string>",
"traceId": "<string>"
}{
"error": "<string>",
"message": "<string>",
"traceId": "<string>"
}{
"error": "<string>",
"message": "<string>",
"traceId": "<string>"
}Authorizations
Body
application/json
Profile management action: add, activate, deactivate, or delete.
Available options:
unknown, add, activate, deactivate, delete LinkedIn profile or company page URL to monitor. Required for action=add.
When action=add, load recent available engagement history for the profile. Defaults to false.
Monitored profile id returned by list_social_engagement_monitored_profiles. Required for activate, deactivate, and delete.
When action=add, set true to enable Social Engagement in the same tool after adding the profile. This starts collection; collected engagers enter the linked flow after it is published. Defaults to false.
Response
Tool result.

