action alertersystem_api_media_object_id_get { label: "Retrieves a MediaObject resource." description: "Retrieves a MediaObject resource." provider: alertersystem method: GET path: "/api/media-object/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "The MediaObject resource is a collection of media objects that can be attached to alerts that are dispatched via an email transport." required: ["partition"] properties: { contentUrl: { type: "string" description: "Where the media file can be accessed." } createdAt: { type: "string" format: "date-time" description: "When the resource instance was created. This date-time is in the UTC timezone." } dataSegmentCode: { type: "string" description: "User-provided string on which to segment and filter data. Max 50 characters." } fileSize: { type: "integer" description: "The size of the media file." } id: { type: "string" format: "uuid" description: "The unique identifier of the resource instance." } keywords: { type: "string" description: "A string of keywords that can be used to search for a resource. Max 100 characters." } mimeType: { type: "string" description: "The mime type of the media file." } originalName: { type: "string" description: "The original name of the media file." } partition: { type: "string" format: "iri-reference" description: "The partition that contains this resource instance. The resource cannot be moved to another partition." } resourceOwner: { type: "string" description: "The name of the person who owns this resource." } } } }