Validate Import
Validate Import
Validate mapped rows and return paginated row-level results
POST
Validate Import
Validate Import
Run validation on the import session using the specified column mapping. Returns a summary of valid/error rows plus paginated row-level validation results. Useerrors_only=true to focus on rows that need attention.
You can optionally include
value_mappings to pre-resolve category values the user remapped by hand (e.g. mapping "Camión" → "truck" for the vehicle_type column).Request
Headers
Your API key for authenticationExample:
sk_live_1234567890abcdefYour organization UUIDExample:
a8315ef3-dd50-43f8-b7ce-d839e68d51faPath Parameters
UUID of the import sessionExample:
"11111111-1111-1111-1111-111111111111"Query Parameters
Page number (1-indexed)
Rows per page (1–500)
When
true, only return rows with validation errorsBody Parameters
Column mapping to use for validation:
{target_column: source_column | null}Example: {"origin": "origin", "destination": "destination", "weight": "weight_kg"}User-defined value remappings for category columns. Map of
{target_column: {raw_value: canonical_value}}.Example: {"vehicle_type": {"Camión": "truck", "Furgoneta": "van"}}Response
UUID of the import session
Total number of data rows
Number of rows that passed validation
Number of rows with at least one validation error
Error counts per column key. Example:
{"weight": 2, "date": 1}Warnings about the overall data shape (e.g. missing columns)
Paginated row-level validation output
Current page number
Rows per page
Total number of pages
Example
Successful Response
Common Errors
401 Unauthorized
Cause: Missing or invalid API key403 Forbidden
Cause: The authenticated user is not a member of the organization404 Not Found
Cause: Import session does not exist or does not belong to your organizationRelated Endpoints
Confirm Mapping
Persist the mapping before validating
Submit Import
Submit the validated session for processing
Get Unique Values
Inspect category values before validation
Import Overview
Full workflow guide

