action openchannel_post_apps { label: "Adds a new app for this developer" description: "- This method is called on behalf of a developer.\n- Price is required if the model is 'single' or 'recurring'\n- Returns the newly created app\n" provider: openchannel method: POST path: "/apps" encoding: json input: { type: "object" properties: { access: { type: "string" } allow: { type: "string" } attributes: { type: "string" } customData: { type: "string" } developerId: { type: "string" } model: { type: "string" } name: { type: "string" } restrict: { type: "string" } type: { type: "string" } } required: ["developerId", "name"] additionalProperties: false } output: { type: "object" additionalProperties: true } }