Skip to main content
GET
/
v2
/
reporting
/
templates
Get Available Metric Templates
curl --request GET \
  --url https://production.hifibridge.com/v2/reporting/templates \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "data": [
    {
      "name": "<string>",
      "displayName": "<string>",
      "description": "<string>",
      "params": [
        {
          "name": "<string>",
          "type": "date",
          "required": true,
          "description": "<string>",
          "options": "<array>",
          "constraints": {}
        }
      ],
      "supportsBreakdowns": true,
      "breakdownOptions": [
        "<string>"
      ]
    }
  ],
  "metadata": {
    "count": 123
  }
}

Authorizations

Authorization
string
header
required

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

Response

Success

List of templates response

status
enum<string>
Available options:
success
data
object[]
metadata
object