curl --request GET \
--url https://api.hubapi.com/contacts/v1/lists/{list_id}{
"listId": 123,
"name": "<string>",
"dynamic": true,
"listType": "STATIC",
"portalId": 123,
"createdAt": 123,
"updatedAt": 123,
"internalListId": 123,
"deleteable": true,
"metaData": {
"processing": "<string>",
"size": 123,
"error": "<string>",
"lastProcessingStateChangeAt": 123,
"lastSizeChangeAt": 123
},
"filters": [
[
{}
]
]
}For a given portal, return a contact list by its unique ID. This returns only the metadata for the list; see the contacts endpoint for getting the contact records in the list.
curl --request GET \
--url https://api.hubapi.com/contacts/v1/lists/{list_id}{
"listId": 123,
"name": "<string>",
"dynamic": true,
"listType": "STATIC",
"portalId": 123,
"createdAt": 123,
"updatedAt": 123,
"internalListId": 123,
"deleteable": true,
"metaData": {
"processing": "<string>",
"size": 123,
"error": "<string>",
"lastProcessingStateChangeAt": 123,
"lastSizeChangeAt": 123
},
"filters": [
[
{}
]
]
}Unique identifier for the list that you're looking for.
Successful response with contact list details
Was this page helpful?