POST
/
v2
/
reports
/
{reportId}
/
execute
cURL
curl --request POST \
  --url https://api.pelanor.io/v2/reports/{reportId}/execute \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "elements": [
    {
      "key": [
        "<string>"
      ],
      "propertyValues": {},
      "metricValues": {}
    }
  ]
}
Runs a saved report by its ID in the Pelanor platform.
The API key used to make the API request must have access to the report (i.e., same workspace or above)

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

reportId
string
required

Body

application/json · object

Response

200
application/json

A successful response.

The response is of type object.