Review the parked account-creation intent before resuming
/v1/auth/accounts/resumeReturns the signed-in admin's parked account-creation intent — the account_name and application_name captured on the register form — so the SPA can show them for explicit confirmation before resuming. The stash is written pre-auth by whoever submitted the register form with this email, so the names are unconfirmed input and are never acted on without this review step. Guarded by UserJwtGuard. Returns 404 when nothing is parked or the intent has expired.
Responses
application/json
data *PendingAccountCreationResponseDto
application/json
error *ApiErrorBodyDto
application/json
error *ApiErrorBodyDto
application/json
error *ApiErrorBodyDto
Returned object
curl -X GET "https://auth.canopy-io.com/v1/auth/accounts/resume"
{ "data": { "account_name": "string", "application_name": "string", "requested_at": "2026-04-20T12:00:00.000Z", "expires_at": "2026-04-20T12:00:00.000Z" } }
Tell us how we can improve this guide.