PATCH /api/interaction/profile

PATCH /api/interaction/profile
application/json

Body Required

  • username string(regex)

    Format should match the following pattern: /^[A-Z_a-z]\w*$/.

  • email string(regex)

    Format should match the following pattern: /^\S+@\S+\.\S+$/.

  • phone string(regex)

    Format should match the following pattern: /^\d+$/.

  • password string

Responses

PATCH /api/interaction/profile
curl \
 -X PATCH https://[tenant_id].logto.app/api/interaction/profile \
 -H "Content-Type: application/json" \
 -d '{"username":"string","email":"string","phone":"string","connectorId":"string","password":"string"}'
Request example
{
  "username": "string",
  "email": "string",
  "phone": "string",
  "connectorId": "string",
  "password": "string"
}