action openchannel_patch_developer_accounts_developer_account_id { label: "Updates the developer account fields" provider: openchannel method: PATCH 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 } }