Create User

Add a new user on your NFT Management Platform and the rights you wish to associate with.

URL

Required rights: admin, accountManage or usersManage

To create a new user, use /users/create.

POST - https://{{nmpUrl}}/users/create

Body

FieldTypeRequiredDescription
emailStringE-mail address of the new user.
profileadmin, or any profile you created on your NFT Management PlatformThe profile you wish to associate with a user.
You may create a custom profile.
addressOrDomainStringAllows the authorization of an Ethereum address, such as brand.eth, or a domain name, such as brand.com.
.eth / .com format must be respected.
For more information, see Access Right Management.
{ "email": "address@gmail.com", "profile": "certRead", "addressOrDomain": "brand.com" // or "brand.eth" }

Return Payload

FieldSuccessDescription
messagetrueUser successfully created.
{ "message": "User successfully created" }

Errors

Status CodeSuccessError Message
500falseThe user e-mail may already exist.
{}

Did this page help you?