Skip to content

Supabase

Supabase is an open source Firebase alternative. Start your project with a Postgres database, Authentication, instant APIs, Edge Functions, Realtime subscriptions, Storage, and Vector embeddings.

Categories: Developer Tools

Type: supabase/v1


Connections

Version: 1

bearer_token

Properties

NameLabelTypeDescriptionRequired
projectUrlProject URLSTRINGCan be found in Project Settings -> Data API.true
tokenProject API KeySTRINGCan be found in Project Settings -> Data API. Choose service_role/secret API key.true

Actions

Upload File

Name: uploadFile

Upload file to Supabase Bucket.

Properties

NameLabelTypeDescriptionRequired
bucketNameBucket NameSTRINGtrue
fileNameFile NameSTRINGName of the file that will be uploaded.true
fileFileFILE_ENTRYFile you want to upload to Supabase.true

Example JSON Structure

{
"label" : "Upload File",
"name" : "uploadFile",
"parameters" : {
"bucketName" : "",
"fileName" : "",
"file" : {
"extension" : "",
"mimeType" : "",
"name" : "",
"url" : ""
}
},
"type" : "supabase/v1/uploadFile"
}

Output

Type: OBJECT

Properties

NameTypeDescription
KeySTRINGKey of the file that was uploaded.
IdSTRINGId of the file that was uploaded.

Output Example

{
"Key" : "",
"Id" : ""
}

Additional instructions