Create a new workspace
Authentication: required
Required API Scope: Instance Workspace: Create
curl --request POST \
--url https://your-xano-instance.xano.io/api:meta/workspace \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "My New Workspace",
"description": "A new workspace for my project"
}
'{
"id": 1,
"name": "My Workspace",
"description": "My Workspace Description",
"branch": "v1"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?
curl --request POST \
--url https://your-xano-instance.xano.io/api:meta/workspace \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "My New Workspace",
"description": "A new workspace for my project"
}
'{
"id": 1,
"name": "My Workspace",
"description": "My Workspace Description",
"branch": "v1"
}