Lists
Get a single List Entry on a List
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.
get/v2/lists/{listId}/list-entries/{listEntryId}
Path parameters
listIdinteger required
List ID
listEntryIdinteger required
List Entry ID
Query parameters
fieldIdsstring[]
Field IDs for which to return field data
[ "field-1" ]
fieldTypesstring[]
Field Types for which to return field data
Response
OK
Example response
{
"id": 1,
"type": "company",
"listId": 1,
"createdAt": "2023-01-01T00:00:00Z",
"creatorId": 1,
"entity": {
"id": 1,
"name": "Horizon Technologies",
"domain": "horizontech.com",
"domains": [
"horizontech.com"
],
"isGlobal": true,
"fields": []
}
}