Skip to main content
POST
/
apps
/
{appID}
/
uploads
/
{uploadID}
/
complete
cURL
curl --request POST \
  --url https://api.glideapps.com/apps/{appID}/uploads/{uploadID}/complete \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "url": "https://storage.googleapis.com/glide-uploads/example.png"
  }
}
Finalize an upload and receive the public URL for the file. Use the uploadID from the create upload response. If the uploaded object is missing or incomplete, this endpoint returns a 409. Note that Glide will delete this file within 30 days if the URL is not stored in a table in Glide.

Authorizations

Authorization
string
header
required

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

Path Parameters

appID
string
required

ID of the app, e.g., mT91fPcZCWigkZXgSZGJ

Example:

"mT91fPcZCWigkZXgSZGJ"

uploadID
string
required

ID of the upload, e.g., upload-123

Example:

"upload-123"

Response

data
object
required