action attio_delete_record { label: "Delete a record" description: "Deletes a single record (e.g. a company or person) by ID.\n\nRequired scopes: `object_configuration:read`, `record_permission:read-write`." provider: attio method: DELETE path: "/v2/objects/{object}/records/{record_id}" encoding: json scopes: ["record_permission:read-write", "object_configuration:read"] input: { type: "object" properties: { object: { type: "string" description: "The UUID or slug of the object the record belongs to." } record_id: { type: "string" description: "The UUID of the record to delete." } } required: ["object", "record_id"] additionalProperties: false } output: { type: "object" description: "Success" properties: {} } }