action iqualify_patch_users_user_email { label: "Update user" description: "Updates the specified user by email." provider: iqualify method: PATCH path: "/users/{userEmail}" encoding: json input: { type: "object" properties: { email: { type: "string" format: "email" } firstName: { type: "string" } lastName: { type: "string" } metadata: { type: "object" properties: { tags: { type: "array" items: { type: "string" } } } additionalProperties: false } personId: { type: "string" } profile: { type: "object" properties: { displayName: { type: "string" } } } sendInvite: { type: "boolean" } } additionalProperties: false } output: { type: "object" properties: { avatarUrl: { type: "string" } email: { type: "string" format: "email" } firstAccessAt: { type: "string" format: "date-time" } firstName: { type: "string" } id: { type: "string" } invite: { type: "object" properties: { url: { type: "string" description: "if sendInvite in request is false" } } } lastAccessAt: { type: "string" format: "date-time" } lastName: { type: "string" } metadata: { type: "object" properties: { tags: { type: "array" items: { type: "string" } } } additionalProperties: false } personId: { type: "string" } profile: { type: "object" properties: { displayName: { type: "string" } mobile: { type: "string" } } } } } }