Update table properties including name, description, tags, and authentication settings
Authentication: required
Required API Scope: Workspace Database: Update
curl --request PUT \
--url https://your-xano-instance.xano.io/api:meta/workspace/{workspace_id}/table/{table_id}/meta \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"description": "<string>",
"tag": [
"<string>"
],
"auth": true
}
'{}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Success!
The response is of type object.
Was this page helpful?
curl --request PUT \
--url https://your-xano-instance.xano.io/api:meta/workspace/{workspace_id}/table/{table_id}/meta \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"description": "<string>",
"tag": [
"<string>"
],
"auth": true
}
'{}