Skip to main content
DELETE
/
users
/
invitation
/
{id}
Delete an invitation
curl --request DELETE \
  --url https://incoming.qomon.app/users/invitation/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "message": "<string>"
  },
  "status": "<string>"
}
Deleting an invitation will prevent the invited user from accepting it and joining the group, but it will not revoke access if the invitation has already been accepted. To revoke access for an already accepted invitation, you will need to remove the user from the group directly.

Authorizations

Authorization
string
header
required

OAuth2 access token. Pass the token in the Authorization header as Bearer <token>. The token is looked up in Redis to resolve the caller identity.

Path Parameters

id
integer<int64>
required

Invitation ID.

Required range: x >= 0
Example:

111

Response

OK

data
object
required
status
string
required

Operation result.

Example:

"success"

Last modified on June 16, 2026