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.

Error Responses

StatusDescription
402Upload quota exceeded. The file has been deleted.
409Upload incomplete. The file bytes were not fully uploaded to the uploadLocation.
413File too large. The uploaded file exceeds the maximum allowed size. The file has been deleted.
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