Skip to main content
DELETE
/
prospects
Remove prospect from campaign
curl --request DELETE \
  --url https://api.goextrovert.com/client/v1/prospects \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "campaignId": "123e4567-e89b-12d3-a456-426614174001",
  "prospectProfileUrl": "https://www.linkedin.com/in/john-doe",
  "rejectPosts": true
}'
{
  "status": "success",
  "data": null,
  "message": "Operation completed successfully",
  "statusCode": 201
}

Authorizations

x-api-key
string
header
required

API key for authentication

Body

application/json
campaignId
string<uuid>
required

UUID of the campaign

Example:

"123e4567-e89b-12d3-a456-426614174001"

prospectProfileUrl
string
required

LinkedIn profile URL of the prospect

Example:

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

rejectPosts
boolean
required

If true, rejects any posts for approval for this prospect. If false, does not reject posts, but deletes the prospect from the campaign.

Response

Prospect successfully removed

status
string
Example:

"success"

data
null
Example:

null

message
string
Example:

"Operation completed successfully"

statusCode
integer
Example:

201

I