For the complete documentation index, see llms.txt. This page is also available as Markdown.

Manage Branches

List branches

post
Authorizations
AuthorizationstringRequired

Privy access token

Body
objectOptional

See Edge Function source for exact request shape (e.g. interface XxxRequest in index.ts)

Responses
200

Success

application/json
objectOptional
post/get-branches
POST /functions/v1/get-branches HTTP/1.1
Host: your-project-ref.supabase.co
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 2

{}
{}

List all branches

post
Authorizations
AuthorizationstringRequired

Privy access token

Body
objectOptional

See Edge Function source for exact request shape (e.g. interface XxxRequest in index.ts)

Responses
200

Success

application/json
objectOptional
post/get-branches-all
POST /functions/v1/get-branches-all HTTP/1.1
Host: your-project-ref.supabase.co
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 2

{}
{}

Get single branch

post
Authorizations
AuthorizationstringRequired

Privy access token

Body
objectOptional

See Edge Function source for exact request shape (e.g. interface XxxRequest in index.ts)

Responses
200

Success

application/json
objectOptional
post/get-branch
POST /functions/v1/get-branch HTTP/1.1
Host: your-project-ref.supabase.co
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 2

{}
{}

Create branch

post
Authorizations
AuthorizationstringRequired

Privy access token

Body
objectOptional

See Edge Function source for exact request shape (e.g. interface XxxRequest in index.ts)

Responses
200

Success

application/json
objectOptional
post/create-branch
POST /functions/v1/create-branch HTTP/1.1
Host: your-project-ref.supabase.co
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 2

{}
{}

Update branch

post
Authorizations
AuthorizationstringRequired

Privy access token

Body
objectOptional

See Edge Function source for exact request shape (e.g. interface XxxRequest in index.ts)

Responses
200

Success

application/json
objectOptional
post/update-branch
POST /functions/v1/update-branch HTTP/1.1
Host: your-project-ref.supabase.co
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 2

{}
{}

Delete branch

post
Authorizations
AuthorizationstringRequired

Privy access token

Body
objectOptional

See Edge Function source for exact request shape (e.g. interface XxxRequest in index.ts)

Responses
200

Success

application/json
objectOptional
post/delete-branch
POST /functions/v1/delete-branch HTTP/1.1
Host: your-project-ref.supabase.co
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 2

{}
{}

Manage branches

post
Authorizations
AuthorizationstringRequired

Privy access token

Body
objectOptional

See Edge Function source for exact request shape (e.g. interface XxxRequest in index.ts)

Responses
200

Success

application/json
objectOptional
post/manage-branches
POST /functions/v1/manage-branches HTTP/1.1
Host: your-project-ref.supabase.co
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 2

{}
{}

Last updated