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
emailStringโœ…E-mail address of the new user.
profileadmin, ...โœ…The profile you wish to associate with a user.
You may create a custom profile.
addressOrDomainStringโŒAllows the authorization of an Ethereum address, such as brand.eth, or a domain name, such as brand.com.
โš  .eth / .com format must be respected.
{ 
    "email": "[email protected]",
    "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.
{}