End users
End users are your application’s users (distinct from org members — see Authentication model). An end user is a ConnectedId of Type=Guest. Base path: /api/org/{slug}/endusers (authenticated org admin).
| Method · Route | Purpose | Source |
|---|---|---|
GET / | List end users (paged: page, pageSize, search, status, appGroupId) | EndUserEndpoints.cs:29 |
POST / | Create / invite an end user | :224 |
POST /{endUserId}/resend-invite | Resend invite | :284 |
PATCH /{endUserId}/suspend | Suspend | :43 |
PATCH /{endUserId}/activate | Activate | :62 |
DELETE /{endUserId} | Delete | :116 |
DELETE /{endUserId}/groups/{groupId} | Remove from an app group | :166 |
The invite verification is a public route — POST /api/enduser/verify-invite (:313). End-user authentication flows (passkey / magic-link / social) live under /api/public/apps/{applicationKey}/auth/* — see Quickstart and the OIDC reference.