Skip to content

Confirms a user's identity by validating a one-time verification code.

GET
/api/v1/provision/consumer/me/confirm-activation-identity/{code}
curl --request GET \
--url https://example.com/api/v1/provision/consumer/me/confirm-activation-identity/example

This endpoint is the final step in an email-based identity verification flow. It is marked as AllowAnonymous because the user clicks a link from an email and may not have an active session. The code itself serves as a temporary, single-use authentication token.

code
required
string

The single-use verification code sent to the user, typically via email.

If the identity is successfully confirmed and the activation workflow is completed.

If the verification code is malformed, expired, or has already been used.

object
type
null | string
title
null | string
status
null | integer | string format: int32
/^-?(?:0|[1-9]\d*)$/
detail
null | string
instance
null | string

If the verification code does not correspond to any active activation workflow.

object
type
null | string
title
null | string
status
null | integer | string format: int32
/^-?(?:0|[1-9]\d*)$/
detail
null | string
instance
null | string