action attio_list_record_entries { label: "List record entries" description: "List all entries, across all lists, for which this record is the parent.\n\nRequired scopes: `record_permission:read`, `object_configuration:read`, `list_entry:read`." provider: attio method: GET path: "/v2/objects/{object}/records/{record_id}/entries" encoding: json scopes: ["record_permission:read", "object_configuration:read", "list_entry:read"] input: { type: "object" properties: { limit: { type: "integer" description: "The maximum number of results to return. The default is `100` and the maximum is `1000`. See the [full guide to pagination here](/rest-api/guides/pagination)." } object: { type: "string" description: "A UUID or slug identifying the object that the record belongs to." } offset: { type: "integer" description: "The number of results to skip over before returning. The default is `0`. See the [full guide to pagination here](/rest-api/guides/pagination)." } record_id: { type: "string" format: "uuid" description: "A UUID identifying the record." } } required: ["object", "record_id"] additionalProperties: false } output: { type: "object" description: "Success" required: ["data"] properties: { data: { type: "array" items: { type: "object" required: ["list_id", "list_api_slug", "entry_id", "created_at"] properties: { created_at: { type: "string" description: "When this entry was created." } entry_id: { type: "string" format: "uuid" description: "A UUID identifying this entry on the list." } list_api_slug: { type: "string" description: "A human-readable slug for the list for use in URLs and responses." } list_id: { type: "string" format: "uuid" description: "A UUID identifying the list that this record is in." } } } } } } }