Skip to main content
User endpoints provide profile management and account operations.

Endpoints in this guide

  • GET /api/user/profile
  • PUT /api/user/profile
  • POST /api/user/api-key/regenerate
  • POST /api/user/list
  • DELETE /api/user/{id}

Update user profile

curl -X PUT https://your-instance.example.com/api/user/profile \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{"fullName":"Jane Doe","phoneNumber":"+15551230000"}'

Regenerate API key

curl -X POST https://your-instance.example.com/api/user/api-key/regenerate \
  -H "Authorization: Bearer <token>"