/Account/Create
Creates an agent account on the server (and logs in to it). This account can be used when logging in, using the Agent API, but also to connect to the Neuron® using any of the available XMPP bindings available. The account that is created, is considered a regular XMPP account on the broker.
When first created, the account is in a disabled state. You need to validate the e-mail address provided in the request first, before the account can be enabled. An e-mail with a verification code will be sent to the e-mail address provided in the request.
Security Notice: This resource requires an API Key and Secret to be provided. These are requested from the operator and must be protected. If compromized, the operator can choose to disable the key. This resource should therefore only be used by clients that can protect such credentials. If creating an account in an environment where protecting such credentials is not possible (such as a web page running on a client browser), use the CreateWebForm resource instead. Eacn API Key is given a number of accounts that can be created with that key. If that limit is reached, no more accounts can be created using that key, until the limit is increased or existing accounts created by that API Key is deleted.
JSON
- Request
{ "userName":Required(Str(PUserName)), "eMail":Required(Str(PEMail)), "phoneNr":Optional(Str(PPhoneNr)), "password":Required(Str(PPassword)), "apiKey":Required(Str(PApiKey)), "nonce":Required(Str(PNonce)), "signature":Required(Str(PSignature)), "seconds":Required(Int(0 < PSeconds <= 3600)) }
- Response (if successful)
{ "created":Required(DateTime(PCreated)), "enabled":Required(Bool(PEnabled)), "canRelay":Required(Bool(PCanRelay)), "jwt":Required(Str(PJwt)), "expires":Required(DateTime(PExpires)) }
XML
- Request
<CreateAccount xmlns="https://waher.se/Schema/BrokerAgent.xsd" userName=(Required(Str(PUserName))) eMail=(Required(Str(PEMail))) phoneNr=(Optional(Str(PPhoneNr))) password=(Required(Str(PPassword))) apiKey=(Required(Str(PApiKey))) nonce=(Required(Str(PNonce))) signature=(Required(Str(PSignature))) seconds=(Required(Int(0 < PSeconds <= 3600))) />
- Response (if successful)
<AccountCreated xmlns="https://waher.se/Schema/BrokerAgent.xsd" created=(Required(DateTime(PCreated))) enabled=(Required(Bool(PEnabled))) canRelay=(Required(Bool(PCanRelay))) jwt=(Required(Str(PJwt))) expires=(Required(DateTime(PExpires))) />
Input Parameters
Parameter | Description |
---|---|
PUserName |
User Name of the account to create. |
PEMail |
e-Mail address of the user. |
PPhoneNr |
Optional Phone number of the user. |
PPassword |
Password to use. |
PApiKey |
API Key to use, to get privileges to create an account. |
PNonce |
A unique random string, at least 32 characters long, with sufficient entropy to not be reused again. If reused, an error will be returned. |
PSignature |
Cryptographic signature of request. |
PSeconds |
Requested number of seconds before the JWT token that will be issued expires. |
Response Parameters
Parameter | Description |
---|---|
PCreated |
When account was created (server timestamp). |
PEnabled |
If account is enabled or not. When creating an account, it’s disabled by default, until the e-mail address has been validated. |
PCanRelay |
If account can be used to relay e-mails. |
PJwt |
A token representing the login to the account. This token is seant as a Bearer token in requests requiring authentication. |
PExpires |
When the JWT token expires. The token needs to be renewed before this token expires, if the client wishes to maintain the connection. After the token expires, the client needs to login again. |
Note: If trying to create an account that already exists, and that is enabled, but using the same password as the existing account, and if PLAIN authentication is permitted on the server, the request will be treated as a login request. The timestamp of the creation of the account can be seen in the response to the request.
Restrictions on User Names
User Names are strings. Not all strings are accepted as user names however. The following restrictions apply:
- User names cannot be empty.
- User names must not be longer than 1023 characters.
- The following characters are not permitted, to allow use of the account in XMPP:
"
,&
,'
,/
,:
,<
,>
and@
. - White-space characters (character codes 0-32) are not allowed.
- Characters that are prohibited in file names are also not allowed:
|
,*
,?
and\
.
Calculating Signature
The signature in PSignature
is calculated as follows.
If a phone number is not provided, you concatenate the strings
PUserName ":" Host ":" PEMail ":" PPassword ":" PApiKey ":" PNonce
and call its
, whereHost
is the host/domain name of the server. It is taken from the HTTPHost
request header, so it must be the same as is used in the URL of the request.If a phone number is provided, you concatenate the strings
PUserName ":" Host ":" PEMail ":" PPhoneNr ":" PPassword ":" PApiKey ":" PNonce
and call its
.UTF-8 encode the secret corresponding to the API key, and call it
Key
.UTF-8 encode the string
s
, and call itData
.Calculate the HMAC-SHA256 signature using
Key
andData
, and call itH
.Base64-encode
H
. The result is the signature of the request.
Signature Audits
Signatures are audited. If too many failed signature attempts are received in a row from a given remote endpoint, that endpoint will be temporarily blocked from further attempts. Error message will contain a timestamp when new attempts can be made. If continuing failing, a remote endpoint may become permanently blocked from accessing the API.
Alternative Name Suggestions
If unable to create an account, suggestions for alternative account names will be returned as HTTP headers, with header names X-AlternativeNameN
, where N is a random number starting with 1
. Digits will be two or more digits.
Javascript Library
Use the following asynchronous method in the Javascript Library, to call this resource. It computes the signature according to the above specification.
var Response = await AgentAPI.Account.Create(UserName,EMail,PhoneNr,Password,ApiKey,Secret,Seconds);
Note: If creation of account is successful, the API library will maintain the resulting token, and make sure to refresh it regularly.