Skip to main content
POST
/
v1
/
profile
/
engagement
/
remove
curl -X POST https://api.trigify.io/v1/profile/engagement/remove \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "profile_url": "https://www.linkedin.com/in/amelia-chen"
  }'
{
  "message": "<string>",
  "success": true,
  "data": {
    "profile_url": "<string>",
    "removed": true,
    "webhook_removed": true
  }
}
Use this endpoint to stop monitoring a tracked LinkedIn profile by supplying its profile_url.
Enterprise-only endpoint. Contact us at [email protected] to discuss access.
This endpoint is free. It archives the tracked profile and removes any webhook configuration for that profile.

Overview

Use this endpoint when you need to stop monitoring one LinkedIn person profile. Trigify archives the tracked profile monitor for the authenticated organisation and removes any configured webhook delivery for that profile in the same operation.

Authentication And Permissions

  • Send your API key in x-api-key
  • Required permission: track:engagement:create
  • Required plan: ENTERPRISE or CUSTOM
curl -X POST https://api.trigify.io/v1/profile/engagement/remove \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "profile_url": "https://www.linkedin.com/in/amelia-chen"
  }'

Request Body

  • profile_url: tracked LinkedIn person profile URL to stop monitoring

What Happens On Remove

  1. Trigify canonicalizes the supplied profile_url.
  2. The matching active tracked profile is resolved inside the authenticated organisation.
  3. The tracked profile monitor is archived so future scrapes stop.
  4. Any profile-specific webhook integration and Svix endpoints are deleted.

Example Response

{
  "success": true,
  "message": "Tracked LinkedIn profile removed successfully",
  "data": {
    "profile_url": "https://www.linkedin.com/in/amelia-chen",
    "removed": true,
    "webhook_removed": true
  }
}

Response Shape

  • profile_url: canonical LinkedIn profile URL that was removed
  • removed: always true on success
  • webhook_removed: whether an active webhook configuration was removed

Not Found Behavior

You receive 404 when:
  • the tracked profile_url does not exist
  • the tracked profile belongs to a different organisation
  • the tracked profile is already archived

Headers

x-api-key
string

Body

application/json
profile_url
string
required

LinkedIn person profile URL to resolve within the authenticated organisation.

Minimum string length: 1
Example:

"https://www.linkedin.com/in/jane-doe"

Response

200 - application/json

Tracked profile removed successfully

message
string
required
success
boolean
required
data
object
required