v50

latestOpenAPI 3.0.0raw.githubusercontent.com2026-05-143124255.4 KB
Profiles

Get unmasked profile by version

Retrieves unmasked information of a specific version of a client profile.

Since your store's profile schema is customizable, the schema and examples presented below may differ from yours. Your integration must be adapted accordingly.

Learn more about the Profile System and its other API endpoints.

⚠️ The Profile System is only compatible with stores using the PII data architecture from Data Protection Plus, which is in closed beta phase, only available in select regions.

This feature is part of VTEX Shield. If you are already a VTEX customer and want to adopt VTEX Shield for your business, please contact Commercial Support. Additional fees may apply. If you are not yet a customer but are interested in this solution, please complete our contact form.

Permissions

Any user or API key must have at least one of the appropriate License Manager resources to be able to successfully run this request. Otherwise they will receive a status code 403 error. These are the applicable resources for this endpoint:

ProductCategoryResource
Profile SystemDocumentsGet Item
Profile SystemDocumentsSave and Update Item
Profile SystemDocumentsDelete Item

There are no applicable predefined roles for this resource list. You must create a custom role and add at least one of the resources above in order to use this endpoint.To learn more about machine authentication at VTEX, see Authentication overview.

❗ To prevent integrations from having excessive permissions, consider the best practices for managing API keys when assigning License Manager roles to integrations.

get/api/storage/profile-system/profiles/{profileId}/versions/{profileVersionId}/unmask

Path parameters

profileIdstring required
Example:70caf394-8534-447e-a0ca-1803c669c771

There are two value options for this field:

  1. ID of the client's profile, as in the id field returned by the Create profile endpoint.

  2. The value of an alternative key (email or document). When using this option, the alternativeKey query parameter is required, to inform which key is being used.

profileVersionIdstring required
Example:70caf394-8534-447e-a0ca-1803c669c771

ID of the version of the client's profile as returned by endpoints that create or update profile information in the version field.

Query parameters

reasonstring required
Example:data-validation

Reason for requesting unmasked data.

Headers

Content-Typestring required
Example:application/json

Type of the content being sent.

Acceptstring required
Example:application/json

HTTP Client Negotiation Accept Header. Indicates the types of responses the client can understand.

Response

OK

idstring

ID of the client's profile.

Example response

[
  {
    "document": {
      "firstName": "John",
      "lastName": "Doe",
      "email": "john.doe@example.com",
      "birthDate": "1925-11-17",
      "document": "12345678900",
      "documentType": "CPF",
      "{customField}": "{value}"
    }
  }
]