Skip to main content
POST
/
api
/
v1
/
accounts
/
createUserAccount
Create an account.
curl --request POST \
  --url https://api.revong.com/api/v1/accounts/createUserAccount \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "surname": "<string>",
  "mail": "<string>",
  "phone": "<string>",
  "metaData": {},
  "advancedData": {}
}'

Authorizations

Authorization
string
header
required

Bearer token with Platform JWT token or API Key.

Body

application/json
name
string
required

You need to provide name of the user.

mail
string
required

End user email.

phone
string
required

You can provide phone number of the user (must be valid), it should include region e.g. +48...

surname
string

You can provide surname of the user.

metaData
object
advancedData
object

Response

OK.