User invites
Initiate verify
Landing point for the link in an invite email: the invite id, code and hash from the query string are stored in a short-lived cookie and the browser is redirected to the re-login flow, so nothing is accepted yet. The invite is settled after the recipient has signed in, and only the accept action completes there, a link carrying any other action is rejected as invalid.
GET
/api/sys/v{version:apiVersion}/user_invites/initiate_verify
Request arguments
| Name | Type | Source |
|---|---|---|
| input | DTO_email_verify | Query |
Request body example
Response
Response body example
DTO_email_verify
| Name | Type | ReadOnly | Description |
|---|---|---|---|
| id | Int32 | Id | |
| tid | Int32 | Tenant Id Optional | |
| code | String | Code | |
| hash | String | Hash | |
| action | ENUM email_verify_action | Action |
ENUM email_verify_action
| Value | Name | Description |
|---|---|---|
| 0 | UNKNOWN | UNKNOWN |
| 1 | ACCEPT | ACCEPT |
| 2 | DENY | DENY |
Generated Aug 4, 2026 18:37