GEThttps://api.veriko.mx/v1/beneficiaries/imports/{id}/preview

Preview extracted rows from import

Audience
public
Auth
API key
Permission
beneficiaries:create
How-to guide →

Returns rows extracted from the file, paginated and filterable by bucket. CLABEs and phones are shown in full to the job owner; cards are also returned in full in the owner's view (the cross-user admin view masks them). Available only when the job is in preview_ready or later states with total_rows>0.

Parameters
ParameterInTypeRequiredDescription
id*pathintegerrequired

Numeric ID of the import job.

e.g. 42
bucketsqueryarray<string>optional

Which rows to include, based on how they came out of the file. valid goes in as-is. correctable has a problem the platform can fix on its own — a bank inferred from the account number, say — and goes in too. fatal cannot be used and is dropped. duplicate_account and duplicate_alias clash with an existing beneficiary, by number or by name; the first is dropped and the second is kept anyway. Without this filter every row comes back.

e.g. ["valid","correctable"]
pagequeryintegeroptional

Page number (1-based).

Default: 1

e.g. 1
per_pagequeryintegeroptional

Rows per page (1–100).

Default: 25

e.g. 25
Request
curl -X GET 'https://api.veriko.mx/v1/beneficiaries/imports/{id}/preview' \
  -H 'Authorization: Bearer veriko_••••'

Python example — coming soon.

JavaScript example — coming soon.

PHP example — coming soon.

Response 200BeneficiaryImportPreviewResponse — Paginated preview rows with pagination metadata and job snapshot.
FieldTypeDescription
dataarray

Main response payload. Shape varies by endpoint (object, array, or JSON:API envelope with type, id, attributes).

typestring

JSON:API resource type (always beneficiary_import_row).

e.g. beneficiary_import_row
idstring

Numeric row ID expressed as a string (JSON:API format).

e.g. 123
attributesobject

Parsed row fields.

row_indexinteger

0-based position of the row in the original file. Allows the user to locate the row in the source document.

e.g. 5
statusstring

Classification bucket: valid — ready for commit; correctable — auto-corrected, confirmable; fatal — uncorrectable error, skipped; duplicate_account — account already registered (reactivated if archived); duplicate_alias — duplicate alias, persisted with suffix.

e.g. valid
parsed_accountstring | nullnullable

Normalized account number extracted from the file. The job owner can view and edit this value in the preview; null if no account could be extracted.

e.g. 012180004412345678
parsed_account_typestring | nullnullable

Detected account type. null if parsed_account is null. The types are clabe, card, and phone.

e.g. clabe
parsed_bank_codestring | nullnullable

5-digit Banxico code of the receiving bank derived from the parsed account. null if it could not be resolved.

e.g. 40012
parsed_bank_namestring | nullnullable

Resolved name of the receiving bank. null if it could not be resolved.

e.g. BBVA MEXICO
parsed_labelstring | nullnullable

Label/alias extracted from the file or auto-assigned. null if no label could be extracted and none was auto-assigned.

e.g. Proveedor ABC
error_codesarray

Stable error codes for the row (e.g. clabe_checksum_failed, alias_missing). Empty for valid rows.

e.g. []
corrections_appliedobject

Auto-corrections applied by the system to this row (e.g. { "alias_auto_assigned": "Proveedor 001" }). Empty if no corrections were made.

e.g. {}
user_overridesobject

Manual user overrides submitted via PATCH /v1/beneficiaries/imports/{id}/rows/{rowId}. Take precedence over parsed values during commit.

e.g. {}
raw_previewobject

Snippet of the original file for diagnostic purposes. Sequences of 6 or more consecutive digits are masked (••••) to prevent PAN exposure in debug payloads.

e.g. {}
created_beneficiary_idinteger | nullnullable

ID of the beneficiary record created after commit. null until the job completed and this row was persisted.

e.g. null
metaobject

Response metadata including API version, route prefix, unique request identifier, and the server timestamp in UTC.

versionstring

API version that processed the request.

e.g. 1.47.0
api_versionstring

API route prefix version (e.g. v1).

e.g. v1
request_idstring

Unique request identifier (hex).

e.g. a1b2c3d4e5f6
datetimeobject

Companion descriptor present in every response's meta block (and in outgoing webhook payloads). Lets clients assert the timezone contract without re-reading the spec.

e.g. {"timezone":"UTC","format":"ISO 8601"}
timezone*string

Always UTC — the canonical timezone for every datetime field in the body.

e.g. UTC
format*string

Always ISO 8601 — explicit Z suffix on every datetime.

e.g. ISO 8601
linksobject

Pagination or related links, present only when the endpoint returns a paginated collection.

Response status codesGET /v1/beneficiaries/imports/{id}/preview
StatusClassDescriptionBody
2002xxPaginated preview rows with pagination metadata and job snapshot.BeneficiaryImportPreviewResponse
4014xxAuthentication is required or the provided credentials are invalid.ErrorResponse
4034xxInsufficient permissions.ErrorResponse
4044xxThe resource does not exist or is not visible to the clientError
Errors from GET /v1/beneficiaries/imports/{id}/preview
StatusCodeExample
401unauthorized

Invalid or missing authentication credentials.

Envelope
meta.request_id
c4d5e6f7a8b9
403forbidden

You do not have permission to access this resource.

Envelope
meta.request_id
d5e6f7a8b9c0