Gets a single list entry by its entry_id.
Required scopes: list_entry:read, list_configuration:read.
643 matches
49 actions
Attio
49 actions
CRM/Attio
Gets a single list entry by its entry_id.
Required scopes: list_entry:read, list_configuration:read.
{
"type": "object",
"properties": {
"entry_id": {
"type": "string",
"format": "uuid",
"description": "A UUID identifying the entry."
},
"list": {
"type": "string",
"description": "A UUID or slug identifying the list the entry is in."
}
},
"required": [
"entry_id",
"list"
],
"additionalProperties": false
}{
"type": "object",
"description": "Success",
"required": [
"data"
],
"properties": {
"data": {
"type": "object",
"required": [
"created_at",
"entry_values",
"id",
"parent_object",
"parent_record_id"
],
"properties": {
"created_at": {
"type": "string",
"description": "When this entry was created."
},
"entry_values": {
"type": "object",
"description": "A list of attribute values for the list entry (not attribute values for its parent record)."
},
"id": {
"type": "object",
"required": [
"entry_id",
"list_id",
"workspace_id"
],
"properties": {
"entry_id": {
"type": "string",
"format": "uuid",
"description": "A UUID identifying this entry."
},
"list_id": {
"type": "string",
"format": "uuid",
"description": "A UUID identifying the list this entry is in."
},
"workspace_id": {
"type": "string",
"format": "uuid",
"description": "A UUID identifying the workspace this entry belongs to."
}
}
},
"parent_object": {
"type": "string",
"description": "A UUID or slug identifying the object that the parent record belongs to."
},
"parent_record_id": {
"type": "string",
"format": "uuid",
"description": "A UUID identifying the record that is parent of the list entry."
}
}
}
}
}