action iqualify_get_users_user_email_badges { label: "Find user's badges" description: "Responds with all badges that the specified user has been awarded." provider: iqualify method: GET path: "/users/{userEmail}/badges" encoding: json output: { type: "array" items: { type: "object" properties: { awardedAt: { type: "string" format: "date-time" } badgeExpiry: { type: "object" properties: { expirationDate: { type: "string" format: "date-time" } expires: { type: "boolean" } } } badgeUrl: { type: "string" } criterias: { type: "object" } description: { type: "string" } offeringId: { type: "string" } openBadge: { type: "object" } title: { type: "string" } } } } }