Dec 23, 2021 11:10 AM
Hello, i saw on the v3 docs that lists API is under development, that's why i decided to go v1 API and when i make a GET request to https://api.hubapi.com/contacts/v1/lists?count=2&offset=0 that is the response:
{
"offset": 0,
"lists": [],
"has-more": false
}
but I have 2 lists created...
Also when calling the list id directly (obtained from HubSpot URL)
Making a GET request to: https://api.hubapi.com/contacts/v1/lists/13
The response is:
{
"status": "error",
"message": "Couldn't find a List with the given id '13'.",
"correlationId": "7bd618c2-2816-42de-b1e8-dfce2dc33b8f",
"errors": [
{
"message": "This list 13 does not exist."
}
],
"category": "OBJECT_NOT_FOUND"
}
Any way or alternative to fix it? I need to use Lists API
Dec 27, 2021 2:47 AM