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.
JavaScript
const options = {method: 'GET', headers: {'x-organization-id': '<x-organization-id>'}}; fetch('https://api.dcycle.io/v1/report_builder/kpis', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
import requestsurl = "https://api.dcycle.io/v1/report_builder/kpis"headers = {"x-organization-id": "<x-organization-id>"}response = requests.get(url, headers=headers)print(response.text)
curl --request GET \ --url https://api.dcycle.io/v1/report_builder/kpis \ --header 'x-organization-id: <x-organization-id>'
{}
{ "detail": [ { "loc": [ "<string>" ], "msg": "<string>", "type": "<string>" } ]}
Get kpis.
Enum for kpi category.
environmental
narrative_social
quantitative_social
Successful Response
The response is of type Response Get Kpis V1 Report Builder Kpis Get · object.
Response Get Kpis V1 Report Builder Kpis Get · object
Was this page helpful?