action hhs_get_resources_media_id_embed_json { label: "Get embed code for MediaItem" description: "Get the javascript or iframe embed code for this item (to embed it on a web page)." provider: hhs method: GET path: "/resources/media/{id}/embed.json" encoding: json input: { type: "object" properties: { displayMethod: { type: "string" } divId: { type: "string" } excludeDiv: { type: "boolean" } excludeJquery: { type: "boolean" } flavor: { type: "string" } height: { type: "integer" format: "int32" } id: { type: "integer" format: "int64" } iframeName: { type: "string" } width: { type: "integer" format: "int32" } } required: ["id"] additionalProperties: false } output: { type: "string" } }