action hhs_get_resources_campaigns_id_syndicate_format { label: "Get MediaItems for Campaign" description: "MediaItem" provider: hhs method: GET path: "/resources/campaigns/{id}/syndicate.{format}" encoding: json input: { type: "object" properties: { displayMethod: { type: "string" } format: { type: "string" } id: { type: "integer" format: "int64" } } 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" } } } } } } }