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

Program Media

The Program Media object allows vendors to add, view, or delete media from the object.

This object contains the following attributes:

Field
Type
Description

id

string

(Read-only) The business identifier of the media object.

name

string

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

description

string

A description of the media object.

type

string

The type of the media object.

displayOrder

integer

The display order of the media object.

status

string

The status of the document object. Allowed values are:

  • Draft

  • Published

  • Unpublished

  • Deleted

program

object

Represents the program to which the media belongs.

audit

object

Represents the audit object.

Example

THE PROGRAM MEDIA OBJECT
 {
    "id": "MED-1234-1234",
    "href": "v1/catalog/programs/media/MED-1234-1234",
    "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,
    "state": "Draft",
    "program": {
        "id": "PRG-1111-1111",
        "href": "/catalog/programs/PRG-1111-1111",
        "name": "Microsoft Office 365 NCE",
        "icon": "/static/PRG-1111-1111/logo.png"
    },
    "audit": {
     "created": { "at": "...", "by": { } },
     "updated": { "at": "...", "by": { } }
   }
  }

Last updated

Was this helpful?