Get invite summary
/portal/v1/accounts/{accountSlug}/identity-invites/summaryReturns invite counts for the active Environment grouped by status: total_invites, pending_count, accepted_count, expired_count, and revoked_count, plus pending_with_role_count for pending invites that carry an initial role assignment. Counts span the entire Environment, not a single page.
Authentication
AuthorizationJWT access token. Never send alongside X-API-Key: a request carrying both is refused.
identities.viewIdentitiesView end-user identities across the account. Granted through an administrator role in the Admin Workspace; a valid token without it is refused with 403.
Responses
application/json
data *IdentityInvitesSummaryDto
application/json
error *ApiErrorBodyDto
application/json
error *ApiErrorBodyDto
Errors
When the request can't be completed, the response body includes a stable error code you can branch on.
account.capability_requiredForbiddenThe signed-in user's administrator roles do not grant the capability this endpoint requires.
Ask an account administrator to grant a role carrying the capability named in the Authentication section, then retry.
Returned object
curl -X GET "https://auth.canopy-io.com/portal/v1/accounts/{accountSlug}/identity-invites/summary" \ -H "Authorization: Bearer $CANOPY_TOKEN"
{ "data": { "total_invites": 0, "pending_count": 0, "pending_with_role_count": 0, "accepted_count": 0, "expired_count": 0, "revoked_count": 0 } }
Tell us how we can improve this guide.