For the complete documentation index, see llms.txt. This page is also available as Markdown.

Raw

All the endpoints that can be called on the Raw controller.

All the endpoints require the API_RAW_TABLE_READ permission.

index

get

The index lists all available data through the raw endpoint.

See the Response tab below for a sample response.

Authorizations
HTTPRequired
Responses
200

Successful response

application/json
get/api/v2/raw
200

Successful response

tableData

get

The actual data can be fetched with this endpoint. Use the data of the method above to generate a valid URL with valid columns and filters.

Authorizations
HTTPRequired
Query parameters
tablestringOptional

The table to get the data from, sample: telephone_calls_inbound

Example: telephone_calls_inbound
columnsstringOptional

Comma separated list of the columns you want data from.

Example: id,brand_id,ticket_id
filters[]stringOptional

Array of filters you want to apply. Availability is dependent per table. Simply give the filter name as index for this parameter.

startstringOptional

type: ISO datetime

Timestamp of when the data should start, example: 2025-01-01 00:00:00

Example: 2025-01-01 00:00:00
endstringOptional

type: ISO datetime

Timestamp of when the data should end, example: 2025-02-01 00:00:00

Example: 2025-04-20 22:00:00
Responses
200

OK

application/json
Responseobject
get/api/v2/raw/tableData
200

OK

fullTable

get

Returns the raw data of the full table.

Uses the table param to get the raw_fulltable_crons entry and serves the given file.

Authorizations
HTTPRequired
Responses
200

Successful response

application/json
get/api/v2/raw/fullTable
200

Successful response

Last updated