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 |
|---|---|---|
| code | string | The unique invite code string |
The unique invite code string | ||
| createdDate | string | When the invite code was created |
When the invite code was created | ||
| isUsed | boolean | Whether this invite code has been used to create a tenant |
Whether this invite code has been used to create a tenant | ||
| usedDate | string | 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"
}