action patientview_get_basic_user_information { label: "Get Basic User Information" description: "Once logged in and have a token, get basic user information including group role membership" provider: patientview method: GET path: "/auth/{token}/basicuserinformation" encoding: json input: { type: "object" properties: { token: { type: "string" } } required: ["token"] additionalProperties: false } output: { type: "object" additionalProperties: true } }