action redirection_get_publish_history_collection { label: "Retrieves the collection of PublishHistory resources." provider: redirection method: GET path: "/publish-histories" encoding: json input: { type: "object" properties: { "createdAt[after]": { type: "string" } "createdAt[before]": { type: "string" } "createdAt[strictly_after]": { type: "string" } "createdAt[strictly_before]": { type: "string" } page: { type: "string" } projectId: { type: "string" } } required: ["projectId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }