1. Docs
  2. API Reference
  3. Review the parked account-creation intent before resuming

Review the parked account-creation intent before resuming

GET/v1/auth/accounts/resume

Returns 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

  • dataPendingAccountCreationResponseDto*

application/json

  • errorApiErrorBodyDto*

application/json

  • errorApiErrorBodyDto*

application/json

  • errorApiErrorBodyDto*

Returned object

Request
curl -X GET "https://auth.canopy-io.com/v1/auth/accounts/resume"
Response
{
  "data": {
    "account_name": "string",
    "application_name": "string",
    "requested_at": "2026-04-20T12:00:00.000Z",
    "expires_at": "2026-04-20T12:00:00.000Z"
  }
}
Related endpoints
POSTRegister a new user
POSTCreate an additional Account for the authenticated admin (no new user)
POSTResume a deferred account creation parked at the register form
DELETEDismiss the parked account-creation intent without creating anything
POSTLook up invite details by token
POSTAccept an invite
POSTAuthenticate and receive tokens
POSTSelect an Account from a pre-auth session (multi-Account login)
POSTSwitch the active Application in an authenticated session
POSTRefresh access token
POSTLogout and revoke tokens
GETVerify email address
POSTResend verification email
POSTResend verification email by token
POSTRequest password reset
POSTReset password with token
POSTChange password (authenticated)
GETGet current user profile
GETGet current user avatar image
POSTUpload profile avatar
DELETERemove profile avatar
POSTRequest an email-address change
POSTConfirm an email-address change
GETGet current user permissions
GETList the Accounts the current user belongs to
GETList active sessions
DELETERevoke all sessions
DELETERevoke a specific session
Was this page helpful?

Tell us how we can improve this guide.