action iqualify_get_users_user_email { label: "Find user by email" description: "Responds with a user matching the specified email." provider: iqualify method: GET path: "/users/{userEmail}" encoding: json 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" } } } } } }