action c19qrserver_post_change_password { label: "Used for changing your password" description: "Pass in your old password and your new password" provider: c19qrserver method: POST path: "/changePassword" encoding: json input: { type: "object" properties: { old_password: { type: "string" description: "The old (current) password" } password: { type: "string" description: "The new password" } } } output: { type: "object" additionalProperties: true } }