Skip to main content
PATCH
/
media-bridge
/
v1
/
{appId}
/
settings
/
event-visibility
Create or update event visibility settings
curl --request PATCH \
  --url https://api.hubapi.com/media-bridge/v1/{appId}/settings/event-visibility \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "eventType": "ALL",
  "updatedAt": 123,
  "showInReporting": true,
  "showInTimeline": true,
  "showInWorkflows": true
}
'
{
  "eventType": "ALL",
  "updatedAt": 123,
  "showInReporting": true,
  "showInTimeline": true,
  "showInWorkflows": true
}

Supported products

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

appId
integer<int32>
required

Body

application/json
eventType
enum<string>
required
Available options:
ALL,
ATTENTION_SPAN,
MEDIA_PLAYS,
MEDIA_PLAYS_PERCENT
updatedAt
integer<int64>
required
showInReporting
boolean
showInTimeline
boolean
showInWorkflows
boolean

Response

successful operation

eventType
enum<string>
required
Available options:
ALL,
ATTENTION_SPAN,
MEDIA_PLAYS,
MEDIA_PLAYS_PERCENT
updatedAt
integer<int64>
required
showInReporting
boolean
showInTimeline
boolean
showInWorkflows
boolean
Last modified on April 21, 2026