action authentiq_user_info { label: "Retrieve a user profile" description: "Use this endpoint to retrieve a user's profile in case you are unable to parse an ID Token or you've not already obtained enough details from the ID Token via the Token Endpoint.\n" provider: authentiq method: GET path: "/userinfo" encoding: json output: { description: "OIDC UserInfo structure" required: ["sub"] properties: { address: { description: "OIDC Address structure" properties: { country: { type: "string" } locality: { type: "string" } postal_code: { type: "string" } region: { type: "string" } street_address: { type: "string" } } } "aq:location": { description: "Geolocation structure" properties: { address: { description: "OIDC Address structure" properties: { country: { type: "string" } locality: { type: "string" } postal_code: { type: "string" } region: { type: "string" } street_address: { type: "string" } } } latitude: { type: "number" format: "float" } longitude: { type: "number" format: "float" } } } email: { type: "string" } email_verified: { type: "boolean" } family_name: { type: "string" } given_name: { type: "string" } name: { type: "string" } phone_number: { type: "string" } phone_number_verified: { type: "boolean" } sub: { type: "string" } } } }