Skip to main content
POST
/
sales-agent-unregister
Unregister sales agent completely
curl --request POST \
  --url https://api.agentic.scope3.com/sales-agent-unregister \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "salesAgentId": "<string>",
  "confirm": true
}'
{
  "success": true,
  "message": "<string>",
  "data": {}
}

Authorizations

Authorization
string
header
required

Bearer token authentication using Scope3 API key

Body

application/json
salesAgentId
string
required

ID of the sales agent to unregister

confirm
boolean
required

Must be true to confirm this destructive operation

Response

Successful tool execution

success
boolean

Whether the operation succeeded

message
string

Human-readable response message

data
object

Response data (varies by tool)

I