Add

  • POST
  • /user
  • /emails

Adds a new email address to the authorized user.

Info
This resource is limited to 10 requests per hour.

Request

REQUIRED SCOPES
MANAGE_EMAILS
POST PARAMETERS
emailrequiredstring
The user’s email.

Last modified on Jan 19, 2026

Request 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" }'

Response

EXAMPLE RESPONSE
{ "email": "mike.benson@buddy.works", "confirmed": false }