GET api/Account/UserInfo

请求参数

URI 参数

无。

Body 参数

Response 信息

资源描述

UserInfoViewModel
名称描述类型附加信息
Email

string

无。

HasRegistered

boolean

无。

LoginProvider

string

无。

Response 格式

application/json, text/json

示例:
{
  "Email": "sample string 1",
  "HasRegistered": true,
  "LoginProvider": "sample string 3"
}

application/xml, text/xml

示例:
<UserInfoViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OpenAPI.Models">
  <Email>sample string 1</Email>
  <HasRegistered>true</HasRegistered>
  <LoginProvider>sample string 3</LoginProvider>
</UserInfoViewModel>