Skip to main content
POST
/
base
/
{baseId}
/
sign-attachment-urls
cURL
curl --request POST \
  --url https://app.teable.ai/api/base/%7BbaseId%7D/sign-attachment-urls \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN' \
  --header 'content-type: application/json' \
  --data '{"attachments":[{"path":"string","token":"string","mimetype":"image/png"}]}'
{
  "attachments": [
    {
      "token": "<string>",
      "url": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

baseId
string
required

The base ID

Body

application/json
attachments
object[]
required

List of attachments to sign

Response

200 - application/json

URLs signed successfully

attachments
object[]
required

List of signed attachments with their tokens and URLs

Last modified on March 5, 2026