- Back to home
- Core
- Authentication
- User
- Point Reward
- Notification
- HealthcheckGET
- Renew OTPPOST
User Change Email in Profile Request V1 - [1/2]
Developing
PUT
/core/v1/users/profile/change-email
Last modified:2025-03-12 08:24:15
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Body Params application/json
newEmail
string <email>
required
Example
{
"newEmail": "user@example.com"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT '/core/v1/users/profile/change-email' \
--header 'Content-Type: application/json' \
--data-raw '{
"newEmail": "user@example.com"
}'
Responses
🟢200Success
application/json
Body
object {0}
Example
{}