listEmail
Get the current user's email list
Header Parameters
- Authorization requiredOauth2 token or private token (needs to start with Bearer plus a space) 
Responses
- 200
- 401
Success
- application/json
- application/xml
- Schema
- Example (from schema)
Schema
- Array [
- email stringemail 
- verified booleanverified 
- visibility stringis public or private 
- ]
[
  {
    "email": "2xas@qq.com",
    "verified": false,
    "visibility": "public"
  }
]
- Schema
- Example (from schema)
Schema
- Array [
- email stringemail 
- verified booleanverified 
- visibility stringis public or private 
- ]
<0>
  <email>2xas@qq.com</email>
  <verified>false</verified>
  <visibility>public</visibility>
</0>
Invalid token, please check if the token is correct.
- application/json
- application/xml
- Schema
- Example (from schema)
Schema
- error stringerror name 
- error_description stringwrong description 
{
  "error": "invalid_token",
  "error_description": "Invalid token, please provide correct token"
}
- Schema
- Example (from schema)
Schema
- error stringerror name 
- error_description stringwrong description 
<root>
  <error>invalid_token</error>
  <error_description>Invalid token, please provide correct token</error_description>
</root>
Loading...