Skip to main content
GET
/
v1
/
core
/
mobile-events
/
{id}
Get mobile event by ID
curl --request GET \
  --url https://api.example.com/v1/core/mobile-events/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "userId": "<string>",
  "organizationId": "<string>",
  "eventCode": "recorderStateChange",
  "event": {
    "value": "start",
    "trigger": "interruption"
  },
  "createdAt": "<string>",
  "recordingId": "<string>",
  "externalOpportunityIds": [
    "<string>"
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

200 - application/json

Get mobile event by ID

id
string
required
userId
string
required
organizationId
string
required
eventCode
enum<string>
required
Available options:
recorderStateChange,
networkStatusChange,
appStateChange,
consentStatusChanged,
recordingMetadataChanged,
deeplinkReceived,
deeplinkConsumed,
userAuthStatusChanged
event
object
required
createdAt
string
required
recordingId
string
externalOpportunityIds
string[]