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