action beezup_get_automatic_transitions { label: "Get list of configured automatic Order status transitions" provider: beezup method: GET path: "/v2/user/marketplaces/orders/automaticTransitions" encoding: json input: { type: "object" properties: { "If-None-Match": { type: "string" } storeId: { type: "string" format: "guid" } } additionalProperties: false } output: { type: "object" required: ["links"] properties: { automaticTransitionInfos: { type: "array" items: { type: "object" } } links: { type: "object" required: ["configure", "self"] properties: { configure: { type: "object" } self: { type: "object" } } } } } }