action learnifier_patch_users_userid { label: "Updates user information" description: "Updates a user. All values that have a key defined in the input will be set. So if a value should not be updated omit it totally from the input, otherwise it will be unset." provider: learnifier method: PATCH path: "/users/{userid}" encoding: json input: { type: "object" properties: { userid: { type: "string" } } required: ["userid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }