Create User
Add a new user on your NFT Management Platform and the rights you wish to associate with.
URL
To create a new user, use /users/create
.
POST - https://{{nmpUrl}}/users/create
Body
Field | Type | Required | Description |
---|---|---|---|
email | String | โ | E-mail address of the new user. |
profile | admin , certRead , reporting , Data Visualisation , Data Visualisation & CertRead | โ | The profile you wish to associate with a user. You may create a custom profile. |
{
"email": "[email protected]",
"profile": "certRead"
}
Return Payload
Field | Success | Description |
---|---|---|
message | true | User successfully created. |
{
"message": "User successfully created"
}
Errors
Status Code | Success | Error Message |
---|---|---|
500 | false | The user e-mail may already exist. |
{}
Updated about 1 month ago