{ "opencollection": "1.0.0", "info": { "name": "Supabase Auth Admin Secrets API", "version": "2.0.0" }, "request": { "auth": { "type": "apikey", "key": "apikey", "value": "{{apikey}}", "placement": "header" } }, "items": [ { "info": { "name": "Secrets", "type": "folder" }, "items": [ { "info": { "name": "List project secrets", "type": "http" }, "http": { "method": "GET", "url": "https://{project_ref}.supabase.co/auth/v1/projects/:ref/secrets", "params": [ { "name": "ref", "value": "", "type": "path", "description": "The unique reference ID for the project, found in the project settings or URL." } ] }, "docs": "Returns a list of all encrypted secrets stored for a project. Secret values are not returned, only their names." }, { "info": { "name": "Create project secrets", "type": "http" }, "http": { "method": "POST", "url": "https://{project_ref}.supabase.co/auth/v1/projects/:ref/secrets", "params": [ { "name": "ref", "value": "", "type": "path", "description": "The unique reference ID for the project, found in the project settings or URL." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Creates one or more encrypted secrets for the project. These secrets are available to Edge Functions as environment variables." }, { "info": { "name": "Delete project secrets", "type": "http" }, "http": { "method": "DELETE", "url": "https://{project_ref}.supabase.co/auth/v1/projects/:ref/secrets", "params": [ { "name": "ref", "value": "", "type": "path", "description": "The unique reference ID for the project, found in the project settings or URL." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Deletes one or more secrets from the project by their names." } ] } ], "bundled": true }