Skip to main content
POST
/
users
/
invitation
Invite users by their emails.
curl --request POST \
  --url https://incoming.qomon.app/users/invitation \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "data": {
    "invitations": [
      {
        "email": "example@mail.com",
        "role_id": 8
      }
    ]
  }
}
'
{
  "status": "success",
  "data": {
    "msg": "invitations created successfully",
    "invitations": {
      "id": 101,
      "group_id": 101,
      "email": "johndoe@mail.com",
      "mobile_phone": "0123456789",
      "role_id": 5,
      "role": {
        "id": 5,
        "name": "<string>",
        "order": 123
      },
      "created_at": "1955-07-06T00:00:00Z",
      "last_sent": "1955-07-06T00:00:00Z",
      "user_id": 2345
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://qomon-86428773.mintlify.app/llms.txt

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

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
data
object
required

Response

Created

status
string
Example:

"success"

data
object
Last modified on May 19, 2026