Skip to content

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 · RoutePurposeSource
GET /List end users (paged: page, pageSize, search, status, appGroupId)EndUserEndpoints.cs:29
POST /Create / invite an end user:224
POST /{endUserId}/resend-inviteResend invite:284
PATCH /{endUserId}/suspendSuspend:43
PATCH /{endUserId}/activateActivate: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.