Begins the password reset process for an account based on email address.
PUT https://sessions-api.hivemp.com/v1/account/password/change/byEmailAddress?emailAddress=emailAddress
You must replace the emphasized parameter values when making the request. Refer to the parameters section below.
This method can only be called with certain kinds of API keys. The API key types that are permitted to call this API are:
Additional restrictions may apply to some of the API key types listed above; refer to the method description for any additional restrictions.
All HiveMP REST APIs require the presence of an X-API-Key
header with an
appropriate value, depending on the access policies outlined above.
This method requires a valid API key to be passed on request, as demonstrated in the following example:
X-API-Key: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
emailAddress |
Description | The email address of the account. |
---|---|---|
Type | string | |
Specified In | query | |
Required? | Yes |
The request body must be empty.
This method will return one of the following responses:
200
|
Description | Success |
---|---|---|
Type | boolean | |
...
|
Description | An error occurred; check the value error code and message of the response |
Type | HiveMPSystemError |
curl -s \
-H "X-API-Key: $apiKey" \
-H "Accept: application/json" \
-H "Content-Length: 0" \
-X PUT \
"https://user-session-api.hivemp.com/v1/account/password/change/byEmailAddress"\
"?emailAddress=$emailAddress"
// At the top of your script.
using HiveMP.Api;
using HiveMP.UserSession.Api;
// Inside your MonoBehaviour. Callbacks automatically happen on the main thread
// via Unity's coroutine infrastructure.
var client = new UserAccountClient("<YOUR API KEY HERE>");
client.AccountPasswordChangeByEmailAddressPUTPromise(new AccountPasswordChangeByEmailAddressPUTRequest
{
EmailAddress = "...",
},
result =>
{
// result is a boolean
},
ex =>
{
// HiveMP exception properties:
// - ex.HttpStatusCode: The HTTP status code of the response
// - ex.HiveErrorCode: The HiveMP error code
// - ex.HiveErrorMessage: The HiveMP error message
// - ex.HiveErrorFields: Arbitrary extra data associated with the error
});
// Add to your namespaces.
using HiveMP.Api;
using HiveMP.UserSession.Api;
// Call this inside an async method.
var client = new UserAccountClient("<YOUR API KEY HERE>");
try
{
var result = await client.AccountPasswordChangeByEmailAddressPUTAsync(new AccountPasswordChangeByEmailAddressPUTRequest
{
EmailAddress = "...",
});
// result is a boolean
}
catch (HiveMPException ex)
{
// HiveMP exception properties:
// - ex.HttpStatusCode: The HTTP status code of the response
// - ex.HiveErrorCode: The HiveMP error code
// - ex.HiveErrorMessage: The HiveMP error message
// - ex.HiveErrorFields: Arbitrary extra data associated with the error
}
# Copy the text below into a Blueprints window
# inside the UE4 editor anywhere to create the node for
# this API call.
Begin Object Class=/Script/OnlineBlueprintSupport.K2Node_LatentOnlineCall Name="K2Node_LatentOnlineCall_0"
ProxyFactoryFunctionName="PerformHiveCall"
ProxyFactoryClass=Class'/Script/HiveMPSDK.sessions_UserAccount_'
ProxyClass=Class'/Script/HiveMPSDK.sessions_UserAccount_'
End Object