Skip to main content
DELETE
/
workspace
/
prospects
Remove prospect from workspace
curl --request DELETE \
  --url https://api.goextrovert.com/client/v1/workspace/prospects \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "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
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 from workspace

status
string
Example:

"success"

data
null
Example:

null

message
string
Example:

"Operation completed successfully"

statusCode
integer
Example:

201

I