Skip to main content
DELETE
/
api
/
client
/
v1
/
workspace
/
prospects
Remove Prospect From Team
curl --request DELETE \
  --url https://prod-nginx-v2.goextrovert.com/webgateway/api/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"
}

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 from the entire team.

Example:

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

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"