DELETE | Bulk delete charts (soft delete, recoverable via restore, when the SOFT_DELETE feature flag is enabled; permanent otherwise) | /api/v1/chart/ |
GET | Get a list of charts | /api/v1/chart/ |
POST | Create a new chart | /api/v1/chart/ |
GET | Get metadata information about this API resource (chart--info) | /api/v1/chart/_info |
GET | Get a chart detail information | /api/v1/chart/{id_or_uuid} |
DELETE | Delete a chart (soft delete, recoverable via restore, when the SOFT_DELETE feature flag is enabled; permanent otherwise) | /api/v1/chart/{pk} |
PUT | Update a chart | /api/v1/chart/{pk} |
GET | Compute and cache a screenshot (chart-pk-cache-screenshot) | /api/v1/chart/{pk}/cache_screenshot/ |
GET | Return payload data response for a chart | /api/v1/chart/{pk}/data/ |
GET | Get the sub-layer charts declared by a deck.gl Multiple Layers chart | /api/v1/chart/{pk}/deck_layers/ |
DELETE | Remove the chart from the user favorite list | /api/v1/chart/{pk}/favorites/ |
POST | Mark the chart as favorite for the current user | /api/v1/chart/{pk}/favorites/ |
GET | Get a computed screenshot from cache (chart-pk-screenshot-digest) | /api/v1/chart/{pk}/screenshot/{digest}/ |
GET | Get chart thumbnail | /api/v1/chart/{pk}/thumbnail/{digest}/ |
GET | Activity stream — chart own edits + datasets the chart pointed at during association | /api/v1/chart/{uuid_str}/activity/ |
GET | Return the version history for a chart | /api/v1/chart/{uuid_str}/versions/ |
GET | Read-only snapshot of the chart at a given version | /api/v1/chart/{uuid_str}/versions/{version_uuid_str}/ |
POST | Revert a chart to an earlier version (non-destructive) | /api/v1/chart/{uuid_str}/versions/{version_uuid_str}/restore |
POST | Permanently delete a soft-deleted chart | /api/v1/chart/{uuid}/purge |
POST | Restore a soft-deleted chart | /api/v1/chart/{uuid}/restore |
POST | Return payload data response for the given query | /api/v1/chart/data |
GET | Download multiple charts as YAML files | /api/v1/chart/export/ |
GET | Check favorited charts for current user | /api/v1/chart/favorite_status/ |
POST | Import chart(s) with associated datasets and databases | /api/v1/chart/import/ |
GET | Get related fields data (chart-related-column-name) | /api/v1/chart/related/{column_name} |
PUT | Warm up the cache for the chart | /api/v1/chart/warm_up_cache |