/Account/VerifyEMail

Verifies an e-mail address corresponding to an account that is being created. When creating an account using /Account/Create, the account is at first disabled. This means, it cannot be used actively in the API. To enable an account, you need to verify the e-mail address provided when creating the account. (If providing a phone number, you need to verify the phone number as well.) The account creation call will send an e-mail with a code to the e-mail address, as well as an SMS to the phone number, if such is provided. The code sent to the e-mail address needs to be provided in a call to this resource, together with the e-mail address.

JSON

Request
{
	"eMail":Required(Str(PEMail)),
	"code":Required(Int(PCode))
}
Response (if successful)
{
	"eMail":Required(Str(PEMail)),
	"userName":Required(Str(PUserName))
}

XML

Request
<VerifyEMail xmlns="https://waher.se/Schema/BrokerAgent.xsd"
             eMail=(Required(Str(PEMail)))
             code=(Required(Int(PCode))) />
Response (if successful)
<EMailVerified xmlns="https://waher.se/Schema/BrokerAgent.xsd"
               eMail=(Required(Str(PEMail)))
               userName=(Required(Str(PUserName))) />

Input Parameters

Parameter Description
PEMail e-Mail address of the user.
PCode Code sent to the user to verify the e-mail address.

Response Parameters

Parameter Description
PEMail e-Mail address of the user.
PUserName User Name of account.

Note: If successful, the account is now enabled and can be used in the API.

Javascript Library

Use the following asynchronous method in the Javascript Library, to call this resource.

var Response = await AgentAPI.Account.VerifyEMail(EMail,Code);
Test



Request Payload:

   

Response Payload: