action box_get_shield_information_barrier_reports { label: "List shield information barrier reports" description: "Lists shield information barrier reports with specific IDs." provider: box method: GET path: "/shield_information_barrier_reports" encoding: json input: { type: "object" properties: { limit: { type: "integer" format: "int64" } marker: { type: "string" } shield_information_barrier_id: { type: "string" } } required: ["shield_information_barrier_id"] additionalProperties: false } output: { type: "object" properties: { entries: { type: "array" description: "A list of shield barrier reports." items: { type: "object" description: "A standard representation\nof a shield information barrier report object" } } limit: { type: "integer" format: "int64" description: "The limit that was used for these entries.\nThis will be the same as the\n`limit` query parameter unless that\nvalue exceeded the maximum value\nallowed. The maximum value varies by API." } next_marker: { type: "string" description: "The marker for the start of the next page of results." } } } }