Bulk Import Lead - throws 611 system error
Hi everyone,
I'm trying to generate a bulk import for leads. I used the documentation as refrence
https://developers.marketo.com/rest-api/bulk-import/bulk-lead-import/
But unfortunately I always receive a system error. Can anybody help and knows whats wrong?
The respond I receive:
{
"requestId": "103cc#180703deac5",
"success": false,
"errors": [
{
"code": "611",
"message": "System error"
}
]
}
What I do
POST:
{{base_url}}/bulk/v1/leads.json?format=csv
Header:
Content-Type:multipart/form-data; boundary=------WebKitFormBoundaryBQACkJZyaiIAXog
Host:784-BQV-997.mktorest.com
Body
- This is just a test due to the documentation to ensure that the error is not caused by my csv data
------WebKitFormBoundaryBQACkJZyaiIAXogC
Content-Disposition: form-data; name="file"; filename="leads.csv"
Content-Type: text/csv
FirstName,LastName,Email,Company
Able,Baker,ablebaker@marketo.com,Marketo
Charlie,Dog,charliedog@marketo.com,Marketo
Easy,Fox,easyfox@marketo.com,Marketo
------WebKitFormBoundaryBQACkJZyaiIAXogC--