action attio_delete_entry { label: "Delete a list entry" description: "Deletes a single list entry by its `entry_id`.\n\nRequired scopes: `list_entry:read-write`, `list_configuration:read`." provider: attio method: DELETE path: "/v2/lists/{list}/entries/{entry_id}" encoding: json scopes: ["list_entry:read-write", "list_configuration:read"] input: { type: "object" properties: { entry_id: { type: "string" format: "uuid" description: "A UUID identifying the entry to delete." } list: { type: "string" description: "A UUID or slug identifying the list the entry is in." } } required: ["entry_id", "list"] additionalProperties: false } output: { type: "object" description: "Success" properties: {} } }