Question
Bulk Data Extract
Hello Community,
I have created a sample job using postman using this endpoint:
POST /bulk/v1/leads/export/create.json
with this request body:
{
"fields": [
"firstName",
"lastName"
],
"format": "CSV",
"columnHeaderNames": {
"firstName": "First Name",
"lastName": "Last Name"
},
"filter": {
"createdAt": {
"startAt": "2023-01-01T00:00:00Z",
"endAt": "2023-01-31T00:00:00Z"
}
}
}
I am getting this response:
{
"requestId": "49f#196d2e99cbf",
"result": [
{
"exportId": {export_id},
"format": "CSV",
"status": "Created",
"createdAt": "2025-05-15T07:47:27Z"
}
],
"success": true
}I not able to start the job this is the end point i am using:
{{base_url}}/bulk/v1/leads/export/{{export_id}}/enqueue.json
The client_id, client_secret, and, base url and access token is correct but still getting this error
Thank you.