API DocsRESTCalculated channels service

ListExpressionIdentifiers

Retrieves a list of valid identifiers that can be used as part of a calculated channel expression.

GET
/api/v1/calculated-channels:expression-identifiers

Query Parameters

pageSizeinteger

Defaults to 1000. Max of 10,000.

Format: "int64"

pageTokenstring

mode
Required
string

Default: "EXPRESSION_MODE_UNSPECIFIED"Value in: "EXPRESSION_MODE_UNSPECIFIED" | "EXPRESSION_MODE_RULES" | "EXPRESSION_MODE_CALCULATED_CHANNELS" | "EXPRESSION_MODE_RULER"
curl -X GET "<API_URL>/api/v1/calculated-channels:expression-identifiers?pageSize=0&pageToken=string&mode=EXPRESSION_MODE_UNSPECIFIED" \
  -H "Authorization: Bearer <API_KEY>"

A successful response.

{
  "identifiers": [
    {
      "name": "string",
      "description": "string",
      "type": "EXPRESSION_IDENTIFIER_TYPE_UNSPECIFIED",
      "displayName": "string",
      "library": "EXPRESSION_IDENTIFIER_LIBRARY_UNSPECIFIED"
    }
  ]
}