action openchannel_post_developer_accounts_developer_account_id { label: "Updates the developer account or adds the developer account if it doesn't exist" provider: openchannel method: POST path: "/developerAccounts/{developerAccountId}" encoding: json input: { type: "object" properties: { customData: { type: "string" } developerAccountId: { type: "string" } developerId: { type: "string" } email: { type: "string" } name: { type: "string" } } required: ["developerAccountId", "developerId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }