action hhs_get_resources_media_id_syndicate_format { label: "Get syndicated content for MediaItem" description: "Get syndicated content." provider: hhs method: GET path: "/resources/media/{id}/syndicate.{format}" encoding: json input: { type: "object" properties: { autoplay: { type: "boolean" } cssClass: { type: "string" } "font-size": { type: "integer" format: "int32" } format: { type: "string" } id: { type: "integer" format: "int64" } imageFloat: { type: "string" } imageMargin: { type: "string" } rel: { type: "boolean" } stripBreaks: { type: "boolean" } stripClasses: { type: "boolean" } stripImages: { type: "boolean" } stripScripts: { type: "boolean" } stripStyles: { type: "boolean" } } required: ["format", "id"] additionalProperties: false } output: { type: "object" properties: { callback: { type: "string" } meta: { type: "object" properties: { messages: { type: "array" items: { type: "object" properties: { errorCode: { type: "string" } errorDetail: { type: "string" } errorMessage: { type: "string" } userMessage: { type: "string" } } } } pagination: { type: "object" properties: { count: { type: "integer" } currentUrl: { type: "string" } max: { type: "integer" } nextUrl: { type: "string" } offset: { type: "integer" } pageNum: { type: "integer" } previousUrl: { type: "string" } sort: { type: "string" } total: { type: "integer" } totalPages: { type: "integer" } } } status: { type: "integer" } } } results: { type: "array" items: { type: "object" properties: { content: { type: "string" } description: { type: "string" } id: { type: "integer" } mediaType: { type: "string" } name: { type: "string" } sourceUrl: { type: "string" } } } } } } }