Zum Hauptinhalt springen
GET
/
export
/
reporting_messages
Export reporting messages
curl --request GET \
  --url https://demo.enneo.ai/api/mind/export/reporting_messages \
  --header 'Authorization: Bearer <token>'
[
  {
    "ticketId": 12345,
    "conversationId": 9876,
    "channel": "email",
    "direction": "out",
    "createdAt": "2024-05-18 11:15:00"
  }
]

Autorisierungen

Authorization
string
header
erforderlich

JWT-based authentication

Abfrageparameter

format
enum<string>

Export format. Defaults to the backend defaultDateExportFormat setting.

Verfügbare Optionen:
xlsx,
csv,
json
limit
integer
Standard:100

The number of items to return

Erforderlicher Bereich: 1 <= x <= 1000
offset
integer
Standard:0

The number of items to skip

Erforderlicher Bereich: x >= 0
orderByField
string

Column used to order the result set (e.g. createdAt, ticketId).

orderByDirection
enum<string>
Standard:desc

Sort direction applied to orderByField.

Verfügbare Optionen:
asc,
desc

Antwort

Export scheduled or returned successfully.

ticketId
integer
conversationId
integer
channel
string
direction
string
createdAt
string<date-time>
rawData
string

Raw payload (may be omitted depending on privacy settings).

Beispiel:
[
{
"ticketId": 12345,
"conversationId": 9876,
"channel": "email",
"direction": "out",
"createdAt": "2024-05-18 11:15:00"
}
]