Retrieve a single list entry. Returns basic information and field data, including list-specific field data.
To retrieve field data, you must use either the fieldIds or the fieldTypes parameter
to specify the Fields for which you want data returned.
These Field IDs and Types can be found using the GET /v2/lists/{listId}/fields endpoint.
When no fieldIds or fieldTypes are provided, the List Entry will be returned without any field data attached.
To supply multiple fieldIds or fieldTypes parameters, generate a query string that looks like this:
?fieldIds=field-1234&fieldIds=affinity-data-location or ?fieldTypes=enriched&fieldTypes=global.
Requires the “Export data from Lists” permission.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
List ID
1 <= x <= 9007199254740991List Entry ID
1 <= x <= 9007199254740991Field IDs for which to return field data
["field-1"]Field Types for which to return field data
enriched, global, list, relationship-intelligence OK
The list entry's unique identifier
1 <= x <= 90071992547409911
The entity type for this list entry
"company""company"
The ID of the list that this list entry belongs to
1 <= x <= 90071992547409911
The date that the list entry was created
"2023-01-01T00:00:00Z"
The ID of the user that created this list entry
1 <= x <= 90071992547409911
Company model
{
"domain": "acme.co",
"name": "Acme",
"isGlobal": true,
"domains": ["acme.co"],
"id": 1,
"fields": [
{
"enrichmentSource": "affinity-data",
"name": "Location",
"id": "affinity-data-location",
"type": "enriched",
"value": {
"data": {
"continent": "North America",
"country": "United States",
"streetAddress": "1 Main Street",
"city": "San Francisco",
"state": "California"
},
"type": "location"
}
},
{
"enrichmentSource": "affinity-data",
"name": "Description",
"id": "affinity-data-description",
"type": "enriched",
"value": {
"data": "A leading provider of innovative solutions",
"type": "text"
}
}
]
}