github teableio/teable v1.4.1

7 days ago

Highlight 🎉

Trash

You can restore space, base, and table from trash now!
image
image
image

Drag and drop attachments to reorder

Community contributions from @zholadev ❤️

output.mp4

Upload attachment into cell

Upload via file

curl -X POST 'https://app.teable.io/table/__tableId__/record/__recordId__/__fieldId__/uploadAttachment' \
  -H 'Authorization: Bearer __token__' \
  -H 'Content-Type: multipart/form-data' \
  -F 'file=@/path/to/your/file.jpg'

Upload via URL

curl -X POST 'https://app.teable.io/table/__tableId__/record/__recordId__/__fieldId__/uploadAttachment' \
  -H 'Authorization: Bearer __token__' \
  -H 'Content-Type: multipart/form-data' \
  -F 'fileUrl=https://example.com/image.jpg'

Response Updated Record

{
    "id": "rec123456789ABCDE",
    "fields": {
      "fld123456789ABCDE": [
        {
          "id": "act75TiSyhcS7hfrizW",
          "name": "example.jpg",
          "path": "table/example",
          "size": 392903,
          "token": "tokenxxxxx",
          "width": 976,
          "height": 1000,
          "mimetype": "image/jpeg",
          "presignedUrl": "https://sss.teable.io/pvt-assets/table/previewURL"
        }
      ],
    }
}

What's Changed

New Contributors

Full Changelog: v1.4.0...v1.4.1

Don't miss a new teable release

NewReleases is sending notifications on new releases.