put
https://maestro.dadosfera.ai/catalog/data-asset/
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Update Data Asset
Use this route to update the properties of an existing data asset in the catalog.
How to use
Provide the data asset id as a path parameter and send the fields to update in the request body.
Payload example
{
"name": "Updated Asset Name",
"description": "Updated description for this data asset",
"tags": ["finance", "quarterly-report"],
"embed": {
"url": "https://example.com/embed"
},
"share_type": "public",
"docs": "# Documentation\nThis asset contains quarterly financial data."
}Body fields
name: new display name for the data asset;description: updated description;tags: array of tag strings to associate with the data asset;embed(optional): object containing aurlfor embedding;share_type(optional): sharing visibility —none,public, orprivate;docs(optional): markdown documentation for the data asset.
Error scenarios
| Code | Error | Description |
|---|---|---|
| 401 | Unauthenticated | Invalid or missing access-token header |
| 403 | Forbidden | User does not have the required permissions |
| 404 | Not Found | The requested data asset does not exist |
| 500 | Internal Server Error | Unknown server error |
