Saltar al contenido principal
PATCH
/
media-bridge
/
2026-03
/
{appId}
/
settings
/
oembed-domains
/
{oEmbedDomainId}
Update an oEmbed domain
curl --request PATCH \
  --url https://api.hubapi.com/media-bridge/2026-03/{appId}/settings/oembed-domains/{oEmbedDomainId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "endpoints": {
    "discovery": true,
    "schemes": [
      "<string>"
    ],
    "url": "<string>"
  },
  "portalId": 123
}
'
{
  "appId": 123,
  "createdAt": 123,
  "deletedAt": 123,
  "endpoints": {
    "discovery": true,
    "schemes": [
      "<string>"
    ],
    "url": "<string>"
  },
  "id": 123,
  "portalId": 123,
  "updatedAt": 123
}

Supported products

Autorizaciones

Authorization
string
header
requerido

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

Parámetros de ruta

appId
integer<int32>
requerido
oEmbedDomainId
string
requerido

Cuerpo

application/json
endpoints
object
requerido
portalId
integer<int32>

Respuesta

successful operation

appId
integer<int32>
requerido
createdAt
integer<int64>
requerido
deletedAt
integer<int64>
requerido
endpoints
object
requerido
id
integer<int64>
requerido
portalId
integer<int32>
requerido
updatedAt
integer<int64>
requerido
Last modified on June 5, 2026