Skip to main content

Update user's email

Outcome

Successfully triggering this endpoint will update the user's registered email to the new specified email.

Endpoint

Example Endpoint

  • PUT /broker/update_user_email
    • Parameters:
      • user_email: Required. Email address of the registered user (string)
      • new_user_email: Required. New email address of the user (string)
    • Response:
      • 200 OK: A JSON object containing success message
      • 500 Internal Server Error: If an error occurs.

Parameters

Additional required parameter(s)

  • Authorization Header: Required for authentication. Should contain a valid JWT token.
  • Content-Type Header: Should be set to application/json for JSON data.

Example

Curl


curl --location --request PUT 'https://hub2.trylevel2.com/broker/update_user_email?user_email=shanhanigun1%40gmail.com&new_user_email=shanhanigun%40gmail.com' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl9leHBpcnkiOjE3NDIyMDA4MDUuMzAzNjEyfQ.dlaC-HU37JNA_KMygPXJu1AiKmBlk8lYBIZaBeGYvq8'