API Docs / Schemas / InviteCodeDto

InviteCodeDto

Represents an invite code used to create new tenants in the system.
Invite codes are generated by SuperAdmins and allocated to users who can then use them to register new organizations.

Properties

Name Type Description
codestring

The unique invite code string

The unique invite code string

createdDatestring

When the invite code was created

When the invite code was created

isUsedboolean

Whether this invite code has been used to create a tenant

Whether this invite code has been used to create a tenant

usedDatestring

When the invite code was used (null if unused)

When the invite code was used (null if unused)

JSON Example

{
  "code": "string",
  "createdDate": "2024-01-01T00:00:00Z",
  "isUsed": false,
  "usedDate": "2024-01-01T00:00:00Z"
}