Analytics apiQuery

Query Export

POST
/query/{table}/export
/query/semantic_threads_view/export

The Authorization access token

Authorization

Authorization
Required
Bearer <token>

The API key for an API integration

In: header

Request Body

application/jsonRequired

selectarray<Any properties in object, object, object>

groupByarray<Any properties in string, object>

whereAny properties in object, object, object

orderByarray<object>

Path Parameters

table
Required
string

Minimum length: 3
curl -X POST "https://api.analytics.inkeep.com/query/semantic_threads_view/export" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "select": [
      {
        "aggregation": "sum",
        "field": "id"
      }
    ],
    "groupBy": [
      "string"
    ],
    "where": {
      "condition": {
        "field": "id",
        "operator": "eq",
        "value": "string"
      }
    },
    "orderBy": [
      {
        "field": "id",
        "direction": "asc"
      }
    ]
  }'

CSV file containing query results

"string"