curl --request POST \
--url https://{host}/Agent/Account/Create \
--header 'Content-Type: application/json' \
--data '
{
"userName": "alice",
"eMail": "alice@example.com",
"phoneNr": "+46700000000",
"password": "correct-horse-battery-staple",
"apiKey": "your-api-key",
"nonce": "random-unique-string-at-least-32-chars",
"signature": "base64-hmac",
"seconds": 3600,
"language": "en"
}
'