forked from gogs/go-gogs-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Users Emails
Unknwon edited this page Dec 16, 2015
·
1 revision
GET /user/emails
Status: 200 OK
Content-Type: application/json
[
{
"email": "[email protected]",
"verified": true,
"primary": true
}
]
POST /user/emails
[
"[email protected]",
"[email protected]"
]
Status: 201 Created
Content-Type: application/json
[
{
"email": "[email protected]",
"verified": false,
"primary": false
},
{
"email": "[email protected]",
"verified": false,
"primary": false
}
]
DELETE /user/emails
[
"[email protected]",
"[email protected]"
]
Status: 204 No Content