Data App CRUD
Update Data App
Update the name and settings of an existing Data App.
PUT
Update the name and configuration of an existing Data App. This is useful for renaming Data Apps or updating their settings.Documentation Index
Fetch the complete documentation index at: https://docs.usedatabrain.com/llms.txt
Use this file to discover all available pages before exploring further.
Updating a Data App name will not affect existing embed configurations or API tokens. They will continue to work with the renamed Data App.
Endpoint Formats
- New Endpoint (Recommended)
- Legacy Endpoint (Deprecated Soon)
Authentication
This endpoint requires a service token in the Authorization header. Service tokens differ from data app API keys and provide organization-level permissions. To access your service token:- In Settings page, navigate to the Service Tokens section.
- Click the “Generate Token” button to create a new service token if you don’t have one already.
Headers
Bearer token for API authentication. Use your service token (not data app API key).
Must be set to
application/json for all requests.Request Body
The current name of the Data App to update. This must exactly match an existing Data App name.
The new name for the Data App. This name must be unique within your organization.
Response
The updated name of the Data App.
Error object returned only when the request fails. Not included in successful responses.
Examples
HTTP Status Code Summary
| Status Code | Description |
|---|---|
200 | OK - Data App updated successfully |
400 | Bad Request - Invalid request parameters |
500 | Internal Server Error - Server error occurred |
Possible Errors
| Error Code | HTTP Status | Description |
|---|---|---|
INVALID_REQUEST_BODY | 400 | Missing or invalid parameters |
DATA_APP_NOT_FOUND | 400 | Data App with specified name not found |
AUTHENTICATION_ERROR | 400 | Invalid or missing service token |
INTERNAL_SERVER_ERROR | 500 | Server error |
Quick Start Guide
Get your service token
In Settings page, navigate to the Service Tokens section. Click the “Generate Token” button to create a new service token if you don’t have one already.
Identify the Data App
Use the List Data Apps API to verify the current Data App configuration:
Next Steps
List Data Apps
View all Data Apps in your organization
Create Data App
Create new Data Apps for your organization
Delete Data App
Remove Data Apps you no longer need
Create API Token
Generate API tokens for your Data Apps

