# Finish a note Marks a note as finished by uploading an empty audio file to S3. This endpoint validates the note ID format, checks user access to the note, and uploads an empty audio file to trigger note processing. The note must belong to the authenticated user's enterprise. Endpoint: POST /notes/{id}/finish Version: 1.0.0 Security: BearerAuth ## Path parameters: - `id` (string, required) Unique identifier of the note to finish (must be valid UUID format) Example: "550e8400-e29b-41d4-a716-446655440000" ## Response 200 fields (application/json): - `success` (boolean, required) Example: true ## Response 400 fields (application/json): - `success` (boolean, required) - `message` (string, required) Example: "You are not authorized to perform this operation" ## Response 401 fields (application/json): - `success` (boolean, required) - `message` (string, required) Example: "You are not authorized to perform this operation" ## Response 500 fields (application/json): - `success` (boolean, required)