Skip to main content
DELETE
/
api
/
client
/
v1
/
prospects
Remove Prospect From Campaign
curl --request DELETE \
  --url https://prod-nginx-v2.goextrovert.com/webgateway/api/client/v1/prospects \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "prospectProfileUrl": "https://www.linkedin.com/in/john-doe",
  "campaignId": "8d256aa6-9b12-49a7-93ee-bf41634b5b60",
  "rejectPosts": true
}
'
{
  "status": "success",
  "data": null,
  "message": "Operation completed successfully"
}

Authorizations

X-API-Key
string
header
required

API Key for authentication

Body

application/json
prospectProfileUrl
string
required

LinkedIn profile URL of the prospect to remove.

Example:

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

campaignId
string<uuid>
required

ID of the campaign to remove the prospect from.

Example:

"8d256aa6-9b12-49a7-93ee-bf41634b5b60"

rejectPosts
boolean
required

If true, rejects the prospect's posts currently in 'Need approval' status. Posts in 'Pending' status are not affected.

Response

status
enum<string>
required

Response status

Available options:
success
data
any | null
required

No response payload

Available options:
null
Example:

null

message
string
required

Success message

Example:

"Operation completed successfully"