Skip to main content
POST
/
sales-agent-account-register
Register account for sales agent
curl --request POST \
  --url https://api.agentic.scope3.com/sales-agent-account-register \
  --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

Sales agent ID

accountIdentifier
string
required

Account identifier

authConfig
object

Authentication configuration (credentials, tokens, etc.) - optional

Response

Successful tool execution

success
boolean

Whether the operation succeeded

message
string

Human-readable response message

data
object

Response data (varies by tool)

I