Skip to main content
POST
/
sales-agent-account-update
Update sales agent account authentication
curl --request POST \
  --url https://api.agentic.scope3.com/sales-agent-account-update \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "salesAgentId": "<string>",
  "accountIdentifier": "<string>",
  "authConfig": {}
}'
{
  "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

accountIdentifier
string
required

Account identifier to update

authConfig
object
required

Updated authentication configuration (credentials, tokens, etc.)

Response

Successful tool execution

success
boolean

Whether the operation succeeded

message
string

Human-readable response message

data
object

Response data (varies by tool)

I