Importer Embeds
Get imported rows for an embed file
Retrieve validated data from an embed file with optional pagination.
get/v1/embeds/{embed_id}/imported-rows
Path parameters
embed_idinteger required
The id of the embed which contains the file.
Query parameters
start_rowinteger
The (0-based) row index of the first row to include.
countinteger
The number of rows to retrieve (default is all rows).
Response
200
Example response
{
"template_key": "contacts",
"workspace_id": 313174,
"sheet_id": 88914,
"sheet_metadata": {
"original_file_name": "original-file.csv"
},
"columns": [
{
"sheet_column_name": "First Name",
"template_column_name": "First Name",
"template_column_key": "first_name"
}
],
"count": 995,
"records": [
{
"account_name": "Box",
"first_name": "Aditi",
"last_name": "Goel",
"owner": "Akshay Goel",
"lead_source": "website",
"date_added": "11/15/2020",
"country_code": "US",
"mailing_address": "925 N Rossiter Blvd, Mount Dora, FL, 32757",
"timezone": "America/New_York",
"market_segment": "SMB",
"title": "Information Systems Manager",
"email_opt_out": "FALSE",
"average_spend": "$7,937.18"
}
]
}