listEmail
Get the current user's email list
Header Parameters
- Authorization required
Oauth2 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 string
email
- verified boolean
verified
- visibility string
is public or private
- ]
[
{
"email": "2xas@qq.com",
"verified": false,
"visibility": "public"
}
]
- Schema
- Example (from schema)
Schema
- Array [
- email string
email
- verified boolean
verified
- visibility string
is 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 string
error name
- error_description string
wrong description
{
"error": "invalid_token",
"error_description": "Invalid token, please provide correct token"
}
- Schema
- Example (from schema)
Schema
- error string
error name
- error_description string
wrong description
<root>
<error>invalid_token</error>
<error_description>Invalid token, please provide correct token</error_description>
</root>
Loading...