Add

  • POST
  • /user
  • /emails

Adds a new email address to the authorized user.

Hint
This resource is limited to 10 requests per hour.

Request

REQUIRED SCOPES
MANAGE_EMAILS
POST PARAMETERS
emailrequired string
The user’s email.

Last modified on Sep 23, 2024

Example:

curl -X POST "https://api.buddy.works/user/emails" \
  -H "Authorization: Bearer <YOUR-TOKEN>" \
  -H "Content-Type: application/json" \
  -d '{
  "email": "mike.benson@buddy.works"
}'
EXAMPLE RESPONSE
{ "email": "mike.benson@buddy.works", "confirmed": false }
STATUS
200 OK
LIMITS
X-Rate-Limit-Limit: 1 X-Rate-Limit-Remaining: 999