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

The business identifier of the Media object.

Example: MED-0001-0001

name

string

The name of the media object.

Example: Microsoft AI Cloud Partner

description

string

The description of the media object.

Example: Build a solid foundation with the support of workplace specialists who take the time to understand your unique business needs.

type

string

The type of the media object.

Example: Online

displayOrder

integer

The display order of the media object.

Example: 100

status

string

The status of the document object.

Possible values: Draft, Published, Unpublished, or Deleted.

program

The program to which the media belongs.

Example:

{
    "id": "PRG-1111-1111",
    "href": "/catalog/programs/PRG-1111-1111",
    "name": "Microsoft AI Cloud Partner",
    "icon": "/static/PRG-1111-1111/logo.png"
}

audit

audit

The audit information object.

Example:

{
  "created": { "at": "...", "by": { } },
  "updated": { "at": "...", "by": { } }
}

Example

 {
    "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?