Skip to main content

Supabase: Edge Function

Call a deployed Supabase edge function (the trailing path segment under /functions/v1/) using the configured HTTP verb. Authentication is handled automatically through the connected Supabase application.

Pre-requisite: Install Supabase application in Profile > {Organization} > Applications to grant Zparse access. The edge function must be deployed in the corresponding Supabase project.

Parameters

ApplicationREQUIRED

Configured Supabase application (project URL + API key).

Function NameREQUIRED

Name of the edge function as deployed (the trailing segment after /functions/v1/).

HTTP MethodREQUIRED

Verb used for the call: GET, POST, PUT, PATCH, DELETE.

Input

Trigger

Optional trigger — when wired, the edge function is called when the trigger fires.

Parameters

Optional JSON or File payload sent as the edge function's body (for POST / PUT / PATCH) or as query string (for GET / DELETE).

Output

JSON

JSON response returned by the edge function.