Skip to main content
POST
/
sales-agent-update
Update sales agent
curl --request POST \
  --url https://api.jackson.scope3.com/sales-agent-update \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "salesAgentId": "<string>",
  "name": "<string>",
  "description": "<string>",
  "contactEmail": "jsmith@example.com"
}'
{
  "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 update

name
string

New name

description
string

New description

contactEmail
string<email>

New contact email

Response

Successful tool execution

success
boolean

Whether the operation succeeded

message
string

Human-readable response message

data
object

Response data (varies by tool)

I