action beezup_create_subscription { label: "Creates a subscription to the orders" description: "Please take a look at this sequence diagram to understand the subscription process to follow [here](https://www.websequencediagrams.com/files/render?link=SBYbeIc8NGshk6ooCbmjoBLIMl4fIGO1xjJbPBQAglBo0n6BwEReh7NXQiPSjOTX)" provider: beezup method: POST path: "/v2/user/marketplaces/orders/subscriptions/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" format: "SubscriptionId" } merchantApplicationName: { type: "string" description: "The name of your application" } merchantApplicationVersion: { type: "string" description: "The version of your application" } merchantEmailAlert: { type: "string" format: "email" description: "The email" } name: { type: "string" description: "The subscription name you want to use" } targetUrl: { type: "string" description: "The URL https://en.wikipedia.org/wiki/URL" } } required: ["id", "merchantApplicationName", "merchantApplicationVersion", "name", "targetUrl"] additionalProperties: false } output: { type: "object" additionalProperties: true } }