MediaValet BrandedPortals API

Branded Portals — externally shareable, branded, permissioned views onto a subset of the asset library, with their own sections and theming. 46 operations.

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/mediavalet-branded-portals-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

mediavalet-branded-portals-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: MediaValet BrandedPortals API
  description: |-
    The MediaValet API is a RESTful, JSON, hypermedia-driven service that supplies data to clients consuming the MediaValet cloud digital asset management (DAM) platform. The service applies business rules, permission rules, and other data processing to standardize what is returned. Requests go to the API gateway at https://api.mediavalet.com and must carry two credentials: an OAuth 2.0 / OpenID Connect Bearer access token issued by https://login.mediavalet.com/connect/token, and a per-account subscription key in the Ocp-Apim-Subscription-Key header. Requests also carry an x-mv-api-version header to select the API version. Access requires a MediaValet subscription and registration in the MediaValet Developer Portal at https://developer.mediavalet.com.

    PROVENANCE: this definition is derived operation-for-operation from MediaValet's own published Postman collection ("MediaValet API", collection 55cc404f-b818-43ba-87c2-1a07f2a47bd9) served at https://docs.mediavalet.com/api/collections/15676803/TzRUB7XE. Paths, methods, parameters, request bodies, response status codes and examples come from that collection. Schemas are inferred from the collection's request/response example payloads and are indicative rather than authoritative.
  version: '1.0'
  contact:
    name: MediaValet
    url: https://developer.mediavalet.com
  termsOfService: https://www.mediavalet.com/terms-of-service
servers:
- url: https://api.mediavalet.com
  description: MediaValet API gateway (public)
security:
- oauth2:
  - api
  subscriptionKey: []
tags:
- name: BrandedPortals
  description: Branded Portals — externally shareable, branded views onto a subset of the library.
paths:
  /brandedportals:
    get:
      operationId: retrieveBrandedPortals
      summary: Retrieve Branded Portals
      description: Returns branded portals.
      tags:
      - BrandedPortals
      parameters:
      - name: x-mv-api-version
        in: header
        required: false
        description: (Required) The requested API version
        schema:
          type: string
        example: '1.2'
      responses:
        '200':
          description: Request was successful.
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: string
                      format: uuid
                    name:
                      type: string
                    publicLiveUrl:
                      type: string
                    status:
                      type: string
                    createdAt:
                      type: string
                      format: date-time
                    draftModifiedAt:
                      type: string
                      format: date-time
                    lastModifiedBy:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                        username:
                          type: string
                        firstName:
                          type: string
                        lastName:
                          type: string
                    hasUnpublishedChanges:
                      type: boolean
                    pageViews:
                      type: integer
                    downloads:
                      type: string
                    sharedBy:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                        username:
                          type: string
                        firstName:
                          type: string
                        lastName:
                          type: string
                    viewAccessGroupCount:
                      type: integer
                    _links:
                      type: object
                      properties:
                        self:
                          type: string
                        functions:
                          type: array
                          items:
                            type: string
                    translationKeys:
                      type: object
                      properties:
                        cillum_ec_:
                          type: object
                        sunt_:
                          type: object
                        temporee:
                          type: object
                    interpolations:
                      type: object
                      properties:
                        quis_f:
                          type: object
                    permissions:
                      type: array
                      items:
                        type: string
              example:
              - id: <uuid>
                name: <string>
                publicLiveUrl: <string>
                status: Draft
                createdAt: <dateTime>
                draftModifiedAt: <dateTime>
                lastModifiedBy:
                  id: <uuid>
                  username: <string>
                  firstName: <string>
                  lastName: <string>
                hasUnpublishedChanges: <boolean>
                pageViews: <integer>
                downloads: <string>
                sharedBy:
                  id: <uuid>
                  username: <string>
                  firstName: <string>
                  lastName: <string>
                viewAccessGroupCount: <integer>
                _links:
                  self: <string>
                  functions:
                  - <string>
                  - <string>
                translationKeys:
                  cillum_ec_: {}
                  sunt_: {}
                  temporee: {}
                interpolations:
                  quis_f: {}
                permissions:
                - lightbox:viewAsset
                - brandedPortal:view
              - id: <uuid>
                name: <string>
                publicLiveUrl: <string>
                status: Unknown
                createdAt: <dateTime>
                draftModifiedAt: <dateTime>
                lastModifiedBy:
                  id: <uuid>
                  username: <string>
                  firstName: <string>
                  lastName: <string>
                hasUnpublishedChanges: <boolean>
                pageViews: <integer>
                downloads: <string>
                sharedBy:
                  id: <uuid>
                  username: <string>
                  firstName: <string>
                  lastName: <string>
                viewAccessGroupCount: <integer>
                _links:
                  self: <string>
                  functions:
                  - <string>
                  - <string>
                translationKeys:
                  ea_: {}
                interpolations:
                  do_1_: {}
                  veniam3ed: {}
                  veniam__: {}
                permissions:
                - asset:downloadFromPortal
                - None
        '403':
          description: The user does not have permission to perform this operation.
        '500':
          description: The request failed because of a problem on the server.
    post:
      operationId: createBrandedPortal
      summary: Create Branded Portal
      description: Creates a branded portal.
      tags:
      - BrandedPortals
      parameters:
      - name: x-mv-api-version
        in: header
        required: false
        description: (Required) The requested API version
        schema:
          type: string
        example: '1.2'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                id:
                  type: string
                  format: uuid
                name:
                  type: string
                host:
                  type: string
                path:
                  type: string
                pageLayout:
                  type: string
                language:
                  type: string
            example:
              id: <uuid>
              name: <string>
              host: <string>
              path: <string>
              pageLayout: <string>
              language: FR
      responses:
        '201':
          description: The branded portal was successfully created.
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    format: uuid
                  liveVersion:
                    type: string
                    format: uuid
                  draftVersion:
                    type: string
                    format: uuid
                  name:
                    type: string
                  status:
                    type: string
                  createdAt:
                    type: string
                    format: date-time
                  host:
                    type: string
                  path:
                    type: string
                  liveHost:
                    type: string
                  livePath:
                    type: string
                  pageLayout:
                    type: string
                  lastPublishedAt:
                    type: string
                    format: date-time
                  draftModifiedAt:
                    type: string
                    format: date-time
                  lastModifiedBy:
                    type: object
                    properties:
                      id:
                        type: string
                        format: uuid
                      username:
                        type: string
                      firstName:
                        type: string
                      lastName:
                        type: string
                  downloadSettings:
                    type: object
                    properties:
                      allowDownloads:
                        type: boolean
                  navigationSettings:
                    type: object
                    properties:
                      showNavigation:
                        type: boolean
                  searchSettings:
                    type: object
                    properties:
                      allowSearch:
                        type: boolean
                  restrictAccessSettings:
                    type: object
                    properties:
                      requireAccessKey:
                        type: boolean
                      accessKey:
                        type: string
                  highlightColourSettings:
                    type: object
                    properties:
                      highlightColour:
                        type: string
                  languageSettings:
                    type: object
                    properties:
                      language:
                        type: string
                      brandedPortalMultiLanguageLinks:
                        type: array
                        items:
                          type: object
                          properties:
                            language:
                              type: string
                            url:
                              type: string
                  skinColors:
                    type: object
                    properties:
                      backgroundAssetCardColor:
                        type: string
                      backgroundAssetCardHeaderColor:
                        type: string
                      backgroundHeaderColor:
                        type: string
                      backgroundMainColor:
                        type: string
                      backgroundPageColor:
                        type: string
                      backgroundReviewActionsColor:
                        type: string
                      buttonColor:
                        type: string
                      buttonInactiveColor:
                        type: string
                      highlightColor:
                        type: string
                      lineColor:
                        type: string
                      overlayColor:
                        type: string
                      tableOddRowColor:
                        type: string
                      textColor:
                        type: string
                      textHighlightColor:
                        type: string
                      textInactiveColor:
                        type: string
                      treeFolderColor:
                        type: string
                      textTreeColor:
                        type: string
                      backgroundTableHeaderColor:
                        type: string
                      backgroundModalHeaderColor:
                        type: string
                      focusOutlineColor:
                        type: string
                  defaultLogoFilePath:
                    type: string
                  pageViews:
                    type: integer
                  downloads:
                    type: string
                  _links:
                    type: object
                    properties:
                      self:
                        type: string
                      functions:
                        type: array
                        items:
                          type: string
                  translationKeys:
                    type: object
                    properties:
                      consequatcc9:
                        type: object
                      occaecat_40e:
                        type: object
                  interpolations:
                    type: object
                    properties:
                      cupidatat_b35:
                        type: object
                      minim_6:
                        type: object
                      ad8:
                        type: object
                      sed_66d:
                        type: object
                  permissions:
                    type: array
                    items:
                      type: string
              example:
                id: <uuid>
                liveVersion: <uuid>
                draftVersion: <uuid>
                name: <string>
                status: Disabled
                createdAt: <dateTime>
                host: <string>
                path: <string>
                liveHost: <string>
                livePath: <string>
                pageLayout: <string>
                lastPublishedAt: <dateTime>
                draftModifiedAt: <dateTime>
                lastModifiedBy:
                  id: <uuid>
                  username: <string>
                  firstName: <string>
                  lastName: <string>
                downloadSettings:
                  allowDownloads: <boolean>
                navigationSettings:
                  showNavigation: <boolean>
                searchSettings:
                  allowSearch: <boolean>
                restrictAccessSettings:
                  requireAccessKey: <boolean>
                  accessKey: <string>
                highlightColourSettings:
                  highlightColour: <string>
                languageSettings:
                  language: FR
                  brandedPortalMultiLanguageLinks:
                  - language: FR
                    url: <string>
                  - language: EN
                    url: <string>
                skinColors:
                  backgroundAssetCardColor: <string>
                  backgroundAssetCardHeaderColor: <string>
                  backgroundHeaderColor: <string>
                  backgroundMainColor: <string>
                  backgroundPageColor: <string>
                  backgroundReviewActionsColor: <string>
                  buttonColor: <string>
                  buttonInactiveColor: <string>
                  highlightColor: <string>
                  lineColor: <string>
                  overlayColor: <string>
                  tableOddRowColor: <string>
                  textColor: <string>
                  textHighlightColor: <string>
                  textInactiveColor: <string>
                  treeFolderColor: <string>
                  textTreeColor: <string>
                  backgroundTableHeaderColor: <string>
                  backgroundModalHeaderColor: <string>
                  focusOutlineColor: <string>
                defaultLogoFilePath: <string>
                pageViews: <integer>
                downloads: <string>
                _links:
                  self: <string>
                  functions:
                  - <string>
                  - <string>
                translationKeys:
                  consequatcc9: {}
                  occaecat_40e: {}
                interpolations:
                  cupidatat_b35: {}
                  minim_6: {}
                  ad8: {}
                  sed_66d: {}
                permissions:
                - user:editEmail
                - asset:shareAsLightbox
        '400':
          description: There was a problem with the data sent with the request.
        '403':
          description: The user does not have permission to perform this operation.
        '409':
          description: Conflict has occurred. Either duplicate name or url.
        '500':
          description: The request failed because of a problem on the server.
  /brandedportals/assets:
    get:
      operationId: searchBrandedPortalAssets
      summary: Search Branded Portal Assets
      description: Returns assets form a search results in a branded portal.
      tags:
      - BrandedPortals
      parameters:
      - name: x-mv-api-version
        in: header
        required: false
        description: (Required) The requested API version
        schema:
          type: string
        example: '1.2'
      responses:
        '200':
          description: Request was successful.
          content:
            application/json:
              schema:
                type: object
                properties:
                  assetCount:
                    type: integer
                  assets:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                        title:
                          type: string
                        media:
                          type: object
                          properties:
                            type:
                              type: string
                            small:
                              type: string
                            thumb:
                              type: string
                            large:
                              type: string
                            medium:
                              type: string
                            download:
                              type: string
                            preview:
                              type: string
                            downloadRequest:
                              type: string
                            stream:
                              type: string
                            streamingManifest:
                              type: string
                            sasExpiry:
                              type: integer
                            sasRenewal:
                              type: integer
                            renditionItemCount:
                              type: integer
                            autodeskUrn:
                              type: string
                        file:
                          type: object
                          properties:
                            title:
                              type: string
                            fileName:
                              type: string
                            fileType:
                              type: string
                        visible:
                          type: boolean
                        brandedPortalVersionSections:
                          type: object
                          properties:
                            occaecatc:
                              type: array
                              items:
                                type: string
                        permissions:
                          type: object
                          properties:
                            all:
                              type: array
                              items:
                                type: object
                                properties:
                                  name:
                                    type: string
              example:
                assetCount: <long>
                assets:
                - id: <uuid>
                  title: <string>
                  media:
                    type: <string>
                    small: <string>
                    thumb: <string>
                    large: <string>
                    medium: <string>
                    download: <string>
                    preview: <string>
                    downloadRequest: <string>
                    stream: <string>
                    streamingManifest: <string>
                    sasExpiry: <long>
                    sasRenewal: <long>
                    renditionItemCount: <long>
                    autodeskUrn: <string>
                  file:
                    title: <string>
                    fileName: <string>
                    fileType: <string>
                  visible: <boolean>
                  brandedPortalVersionSections:
                    occaecatc:
                    - <string>
                    - <string>
                  permissions:
                    all:
                    - name: <string>
                    - name: <string>
                - id: <uuid>
                  title: <string>
                  media:
                    type: <string>
                    small: <string>
                    thumb: <string>
                    large: <string>
                    medium: <string>
                    download: <string>
                    preview: <string>
                    downloadRequest: <string>
                    stream: <string>
                    streamingManifest: <string>
                    sasExpiry: <long>
                    sasRenewal: <long>
                    renditionItemCount: <long>
                    autodeskUrn: <string>
                  file:
                    title: <string>
                    fileName: <string>
                    fileType: <string>
                  visible: <boolean>
                  brandedPortalVersionSections:
                    occaecat3:
                    - <string>
                    - <string>
                    proident__:
                    - <string>
                    - <string>
                  permissions:
                    all:
                    - name: <string>
                    - name: <string>
        '400':
          description: There was a problem with the data sent with the request.
        '403':
          description: The user does not have permission to perform this operation.
        '500':
          description: The request failed because of a problem on the server.
  /brandedportals/{brandedPortalId}:
    get:
      operationId: retrieveBrandedPortal
      summary: Retrieve Branded Portal
      description: Returns a branded portal by branded portal id.
      tags:
      - BrandedPortals
      parameters:
      - name: brandedPortalId
        in: path
        required: true
        description: brandedPortalId path parameter.
        schema:
          type: string
      - name: x-mv-api-version
        in: header
        required: false
        description: (Required) The requested API version
        schema:
          type: string
        example: '1.2'
      responses:
        '200':
          description: Request was successful.
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    format: uuid
                  liveVersion:
                    type: string
                    format: uuid
                  draftVersion:
                    type: string
                    format: uuid
                  name:
                    type: string
                  status:
                    type: string
                  createdAt:
                    type: string
                    format: date-time
                  host:
                    type: string
                  path:
                    type: string
                  liveHost:
                    type: string
                  livePath:
                    type: string
                  pageLayout:
                    type: string
                  lastPublishedAt:
                    type: string
                    format: date-time
                  draftModifiedAt:
                    type: string
                    format: date-time
                  lastModifiedBy:
                    type: object
                    properties:
                      id:
                        type: string
                        format: uuid
                      username:
                        type: string
                      firstName:
                        type: string
                      lastName:
                        type: string
                  downloadSettings:
                    type: object
                    properties:
                      allowDownloads:
                        type: boolean
                  navigationSettings:
                    type: object
                    properties:
                      showNavigation:
                        type: boolean
                  searchSettings:
                    type: object
                    properties:
                      allowSearch:
                        type: boolean
                  restrictAccessSettings:
                    type: object
                    properties:
                      requireAccessKey:
                        type: boolean
                      accessKey:
                        type: string
                  highlightColourSettings:
                    type: object
                    properties:
                      highlightColour:
                        type: string
                  languageSettings:
                    type: object
                    properties:
                      language:
                        type: string
                      brandedPortalMultiLanguageLinks:
                        type: array
                        items:
                          type: object
                          properties:
                            language:
                              type: string
                            url:
                              type: string
                  skinColors:
                    type: object
                    properties:
                      backgroundAssetCardColor:
                        type: string
                      backgroundAssetCardHeaderColor:
                        type: string
                      backgroundHeaderColor:
                        type: string
                      backgroundMainColor:
                        type: string
                      backgroundPageColor:
                        type: string
                      backgroundReviewActionsColor:
                        type: string
                      buttonColor:
                        type: string
                      buttonInactiveColor:
                        type: string
                      highlightColor:
                        type: string
                      lineColor:
                        type: string
                      overlayColor:
                        type: string
                      tableOddRowColor:
                        type: string
                      textColor:
                        type: string
                      textHighlightColor:
                        type: string
                      textInactiveColor:
                        type: string
                      treeFolderColor:
                        type: string
                      textTreeColor:
                        type: string
                      backgroundTableHeaderColor:
                        type: string
                      backgroundModalHeaderColor:
                        type: string
                      focusOutlineColor:
                        type: string
                  defaultLogoFilePath:
                    type: string
                  pageViews:
                    type: integer
                  downloads:
                    type: string
                  _links:
                    type: object
                    properties:
                      self:
                        type: string
                      functions:
                        type: array
                        items:
                          type: string
                  translationKeys:
                    type: object
                    properties:
                      consequatcc9:
                        type: object
                      occaecat_40e:
                        type: object
                  interpolations:
                    type: object
                    properties:
                      cupidatat_b35:
                        type: object
                      minim_6:
                        type: object
                      ad8:
                        type: object
                      sed_66d:
                        type: object
                  permissions:
                    type: array
                    items:
                      type: string
              example:
                id: <uuid>
                liveVersion: <uuid>
                draftVersion: <uuid>
                name: <string>
                status: Disabled
                createdAt: <dateTime>
                host: <string>
                path: <string>
                liveHost: <string>
                livePath: <string>
                pageLayout: <string>
                lastPublishedAt: <dateTime>
                draftModifiedAt: <dateTime>
                lastModifiedBy:
                  id: <uuid>
                  username: <string>
                  firstName: <string>
                  lastName: <string>
                downloadSettings:
                  allowDownloads: <boolean>
                navigationSettings:
                  showNavigation: <boolean>
                searchSettings:
                  allowSearch: <boolean>
                restrictAccessSettings:
                  requireAccessKey: <boolean>
                  accessKey: <string>
                highlightColourSettings:
                  highlightColour: <string>
                languageSettings:
                  language: FR
                  brandedPortalMultiLanguageLinks:
                  - language: FR
                    url: <string>
                  - language: EN
                    url: <string>
                skinColors:
                  backgroundAssetCardColor: <string>
                  backgroundAssetCardHeaderColor: <string>
                  backgroundHeaderColor: <string>
                  backgroundMainColor: <string>
                  backgroundPageColor: <string>
                  backgroundReviewActionsColor: <string>
                  buttonColor: <string>
                  buttonInactiveColor: <string>
                  highlightColor: <string>
                  lineColor: <string>
                  overlayColor: <string>
                  tableOddRowColor: <string>
                  textColor: <string>
                  textHighlightColor: <string>
                  textInactiveColor: <string>
        

# --- truncated at 32 KB (256 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/mediavalet/refs/heads/main/openapi/mediavalet-branded-portals-api-openapi.yml