get https://a.klaviyo.com/api/profile-bulk-import-jobs//import-errors
Get import errors for the bulk profile import job with the given ID.
Rate limits:
Burst: 10/s
Steady: 150/m
Scopes:
profiles:read
Responses
Get import errors for the bulk profile import job with the given ID.
Rate limits:
Burst: 10/s
Steady: 150/m
Scopes:
profiles:read
xxxxxxxxxx
curl --request GET \
--url 'https://a.klaviyo.com/api/profile-bulk-import-jobs/id/import-errors?page[size]=20' \
--header 'Authorization: Klaviyo-API-Key your-private-api-key' \
--header 'accept: application/vnd.api+json' \
--header 'revision: 2025-01-15'
xxxxxxxxxx
24{
"data": [
{
"type": "import-error",
"id": "e4eebb08-b055-4a6f-bb13-c8cb69c9eb94",
"attributes": {
"code": "invalid",
"title": "Invalid input",
"detail": "The payload provided in the request is invalid.",
"source": {
"pointer": "/data"
},
"original_payload": {}
}
}
],
"links": {
"self": "string",
"first": "string",
"last": "string",
"prev": "string",
"next": "string"
}
}