post
https://maestro.dadosfera.ai/catalog
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Create Data Asset
Use this route to create a new data asset in the catalog.
How to use
Send the data asset details in the request body.
Payload example
{
"display_name": "Quarterly Sales Report",
"description": "Contains quarterly sales data by region",
"data_asset_type": "dataset",
"external_url": "https://example.com/data",
"location": "PUBLIC.TB__SALES_DATA",
"embed": {
"url": "https://example.com/embed/dashboard"
},
"docs": "# Sales Report\n\nDocumentation for the quarterly sales dataset."
}Body fields
display_name(required): the display name for the data asset;description(required): a description of the data asset;data_asset_type(required): the type of data asset (e.g.,dataset,dashboard);external_url(required): external URL associated with the asset;location(required): the location of the data (e.g., schema and table name);embed(optional): object containing aurlfor embedding;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 |
| 500 | Internal Server Error | Unknown server error |
201