is there a way to export all contacts from a single list? I have list of 30k+ contacts and when I submit a request to generate link, the link only returns 1000. I am not seeing anything queued up either.
Here are my post parameters
const body = {
list_ids: [list_id], //this is a single list id
status: 'active',
all_active_contacts: true //does not download all of them only 1k
};
Here is the response everytime I try this
"state": "completed",
"started_at": "2025-01-29T17:28:52Z",
"completed_at": "2025-01-29T17:28:53Z",
"created_at": "2025-01-29T17:28:52Z",
"updated_at": "2025-01-29T17:28:53Z",
"percent_done": 100,
"activity_errors": [],
"status": {
"items_total_count": 1000,
"items_completed_count": 1000
},
It never changes any of the data either. It's always the same. Any suggestions, pointers, guidance is appreciated. Thanks!