create-api-group
Create and configure a new API group in a Xano workspace, including enabling Swagger documentation, adding tags, and specifying a branch for organization.
Instructions
Create a new API group in the Xano workspace
Input Schema
Name | Required | Description | Default |
---|---|---|---|
branch | No | Branch name for the API group | |
description | Yes | Description of the API group | |
docs | No | Documentation for the API group | |
name | Yes | Name of the API group | |
swagger | Yes | Whether to enable Swagger documentation | |
tag | No | Tags to associate with the API group |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"branch": {
"description": "Branch name for the API group",
"type": "string"
},
"description": {
"description": "Description of the API group",
"type": "string"
},
"docs": {
"description": "Documentation for the API group",
"type": "string"
},
"name": {
"description": "Name of the API group",
"type": "string"
},
"swagger": {
"description": "Whether to enable Swagger documentation",
"type": "boolean"
},
"tag": {
"anyOf": [
{
"anyOf": [
{
"not": {}
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
{
"type": "null"
}
],
"description": "Tags to associate with the API group"
}
},
"required": [
"name",
"description",
"swagger"
],
"type": "object"
}