Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
cURL
curl --request GET \ --url https://{host}/v2/workspaces/slug:ai-collection-v3/webhooks/v1/collections/{collection_id}/charts \ --header 'Authorization: Bearer <token>'
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}}; fetch('https://{host}/v2/workspaces/slug:ai-collection-v3/webhooks/v1/collections/{collection_id}/charts', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
import requests url = "https://{host}/v2/workspaces/slug:ai-collection-v3/webhooks/v1/collections/{collection_id}/charts" headers = {"Authorization": "Bearer <token>"} response = requests.get(url, headers=headers) print(response.text)
{ "collection_id": "<string>", "charts": [ { "id": "<string>", "kind": "bar", "title": "<string>", "agg": "count", "field": "<string>", "dimension": "<string>" } ] }
{ "error": "InvalidArguments", "message": "<string>" }
Returns the collection’s saved chart specs (shared at the collection level).
User session JWT. Send as Authorization: Bearer <token>.
Authorization: Bearer <token>
Collection identifier returned at creation.
Saved charts.
Hide child attributes
e.g. kpi, bar, line.
"bar"
"count"
Was this page helpful?