For the complete documentation index, see llms.txt. This page is also available as Markdown.

Media

The Media Object enables vendors to add, view, or delete media from the extension object.

Field
Type
Description

id

string

(Read-only) The ID of the media object.

href

string

(Read-only) The resource URI of the media object.

name

string

The name of the media object.

description

string

A description of the media object.

type

string

The type of the media object.

url

string

The URI to access the media object.

displayOrder

integer

The display order of the media object in the list.

status

enum

The status of the media object. Allowed values are:

  • Draft

  • Published

  • Unpublished

  • Deleted

extension

object

Represents the extension object.

audit

object

Represents the audit object.

Example

MEDIA OBJECT
  {
    "id": "EMD-0001-0001",
    "href": "v1/extensions/EXT-1111-1111/media/EMD-0001-0001",
    "name": "Microsoft AI Cloud Partner",
    "description": "Build a solid foundation with the support of workplace specialists who take the time to understand your unique business needs.",
    "type": "Image",
    "url": "https://address.to.media.file.pl/abcde.png",
    "displayOrder": 100,
    "status": "Draft",
    "extension": {
        "id": "EXT-1111-1111",
        "href": "/extensions/EXT-1111-1111",
        "name": "Microsoft Office 365 NCE",
        "icon": "/static/EXT-1111-1111-1111/logo.png"
    },
    "audit": {
     "created": { "at": "...", "by": { } },
     "updated": { "at": "...", "by": { } }
   }
  }

Last updated

Was this helpful?