Events

Report Event Issue

Report connection, audio, and transcription issues for an event


POST /events-v2/report-issue

ParameterTypeDataTypeDescription
event_idqueryintegerThe ID of the event to report an issue
issuequerystringThe issue being reported for the event

Response

{
  "status": "success"
}

Code Samples

Bash

curl --request POST \
  --url 'https://premium.aiera.com/api/events/report-issue' \
  --header 'X-API-Key: xxx'
  --data 'event_id=1234567&issue=Audio%20not%20synced%20with%20transcript'

Python

import requests
requests.post(
    "https://premium.aiera.com/api/events/report-issue",
    headers={"X-API-Key": "xxx"},
    data={
        "event_id": 1234567,
        "issue": 'Audio not synced with transcript'
    }
)
Previous
Upload Event Audio