Confirms a user's identity by validating a one-time verification code.
GET
/api/v1/provision/consumer/me/confirm-activation-identity/{code}
const url = 'https://example.com/api/v1/provision/consumer/me/confirm-activation-identity/example';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/v1/provision/consumer/me/confirm-activation-identity/exampleThis 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.
Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” code
required
string
The single-use verification code sent to the user, typically via email.
Responses
Section titled “ Responses ”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
detail
null | string
instance
null | string
object
type
null | string
title
null | string
status
null | integer | string format: int32
detail
null | string
instance
null | string
Example generated
{ "type": "example", "title": "example", "status": 1, "detail": "example", "instance": "example"}object
type
null | string
title
null | string
status
null | integer | string format: int32
detail
null | string
instance
null | string
Example generated
{ "type": "example", "title": "example", "status": 1, "detail": "example", "instance": "example"}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
detail
null | string
instance
null | string
object
type
null | string
title
null | string
status
null | integer | string format: int32
detail
null | string
instance
null | string
Example generated
{ "type": "example", "title": "example", "status": 1, "detail": "example", "instance": "example"}object
type
null | string
title
null | string
status
null | integer | string format: int32
detail
null | string
instance
null | string
Example generated
{ "type": "example", "title": "example", "status": 1, "detail": "example", "instance": "example"}