Skip to main content
POST
/
users
/
{user_id}
/
emailaddress
Reset email address
curl --request POST \
  --url {schemes}://api.upsun.com/users/{user_id}/emailaddress \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email_address": "jsmith@example.com"
}
'
{
  "error": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://developer.upsun.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

user_id
string<uuid>
required

The ID of the user.

Example:

"d81c8ee2-44b3-429f-b944-a33ad7437690"

Body

application/json
email_address
string<email>
required

Response

No Content

Last modified on May 7, 2026