GET
/
v1
/
core
/
mobile-events
curl --request GET \
  --url https://us-central1-siro-prod.cloudfunctions.net/api-externalApi/v1/core/mobile-events
[
  [
    {
      "id": "<string>",
      "recordingId": "<string>",
      "externalOpportunityIds": [
        "<string>"
      ],
      "userId": "<string>",
      "organizationId": "<string>",
      "eventCode": "recorderStateChange",
      "event": {
        "value": "start",
        "trigger": "interruption"
      },
      "createdAt": "<string>"
    }
  ]
]

Query Parameters

createdAtGt
string

Return results created AFTER the given date. Format: ISO 8601 timestamp (YYYY-MM-DDTHH:mm:ss.sssZ). Example: 2024-06-13T04:00:00.592Z

createdAtLt
string

Return results created BEFORE the given date. Format: ISO 8601 timestamp (YYYY-MM-DDTHH:mm:ss.sssZ). Example: 2024-06-13T04:00:00.592Z

cursor
string

Cursor token for pagination.

pageSize
number
default:100

Number of results to return per page.

Required range: 1 <= x <= 1000
eventCode
enum<string>

Filters to the provided eventCode only.

Available options:
recorderStateChange,
networkStatusChange,
appStateChange,
consentStatusChanged,
recordingMetadataChanged,
deeplinkReceived,
deeplinkConsumed,
userAuthStatusChanged
userId
string

Filters to the provided userId only.

Response

200 - application/json
Get mobile events for an org

The response is of type array.