Finalize Asset Upload
finalize_asset_uploadFinalizes a file upload and attaches the asset to a specified file column on a monday.com item. Requires upload ID, ETag from the presigned URL upload, board, item, and column IDs.
Instructions
Finalize a file upload and create the asset on monday.com. Call this after uploading the file to the presigned URL from get_asset_upload_url. Requires the etag value from the PUT response headers. Automatically attaches the uploaded asset to the specified file column on the item. Returns the created asset_id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| uploadId | Yes | The upload_id returned by get_asset_upload_url | |
| etag | Yes | The ETag header value from the PUT response when uploading to the presigned URL | |
| boardId | Yes | The board's unique identifier | |
| itemId | Yes | The item's unique identifier | |
| columnId | Yes | The file or doc column's unique identifier to attach the uploaded asset to |