Skip to main content
GET
/
workspace
/
{workspace_id}
/
branch
Retrieve all branches in a workspace.
curl --request GET \
  --url https://x8ki-letl-twmt.n7.xano.io/api:meta/workspace/{workspace_id}/branch \
  --header 'Authorization: Bearer <token>'
[
  {
    "created_at": "2023-06-22 22:59:11+0000",
    "label": "v1",
    "live": true,
    "backup": "false"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

workspace_id
integer
required

Response

Success!

created_at
string
default:2023-06-22 22:59:11+0000
label
string
default:v1
live
boolean
default:true
backup
boolean
default:false
I