Skip to main content
POST
/
loglife
/
verify
/
send
Send verification code
curl --request POST \
  --url http://localhost:18789/loglife/verify/send \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "phone": "+15551234567"
}
'
{
  "sent": true
}

Authorizations

Authorization
string
header
required

The API key configured in openclaw.json under plugins.entries.loglife.config.apiKey

Body

application/json
phone
string
required

Phone number to send the code to

Example:

"+15551234567"

Response

Code sent successfully

sent
boolean
Example:

true