Sign in

Create user

documented

Create a new user in Cheqroom.

POST /api/v2_5/usersUsersno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.cheqroom.com/api/v2_5/users" \
  -X POST \\
  -H "Content-Type: application/json" \\
  -H "Accept: application/json" \\
  -H "Authorization: Bearer {{CHEQROOM_API_KEY}}" \\
  -d '{\"name\": \"{{$name}}\", \"email\": \"{{$email}}\", \"role\": \"{{$role}}\", \"invite\": {{$invite}}, \"createCustomer\": {{$createCustomer}}}' \\n  # Source: Cheqroom Core JS docs (base URL: https://api.cheqroom.com/api/v2_5) showing the Users endpoint and sample create call