Skip to main content

Documentation Index

Fetch the complete documentation index at: https://api.qomon.com/llms.txt

Use this file to discover all available pages before exploring further.

User object:

A user is defined by their personal information:
{
  "firstname": "John",
  "surname": "Doe",
  "mail": "john.doe@example.com",
  "mobile": "0123456789",
  "address": {
    "housenumber": "123",
    "street": "Rue de la paix",
    "city": "Paris",
    "country": "France"
  }
}
And some Qomon specific attributes:
{
  "role": [
    { "superadmin", "admin", "manager", "user", "custom" }
  ],
  "status": [
    { "available week-end", "available night" }
  ],
}
The space information is retrieved from the token used to authenticate the user.
It is possible to :
  • invite users by email and manage their invitations
  • list users in the current space, edit their informations and remove them
  • list all the roles and add a role to a user
  • list, create, update and delete teams (public or not)

Tips for Using the API:

  • Roles gestion:
    Each space has different roles and their corresponding role_id. You can retrieve the list of roles by calling the /roles endpoint.
  • Team privacy:
    Teams can be public or private. Public teams are visible to all users in the space, while private teams are only visible to their members.
Last modified on May 20, 2026