POST api/User/AddUser
Request Information
URI Parameters
None.
Body Parameters
AddUserCommandDtoName | Description | Type | Additional information |
---|---|---|---|
Username | string |
None. |
|
Password | string |
None. |
|
Role_Id | globally unique identifier |
None. |
|
RefId | globally unique identifier |
None. |
|
NovaAPIId | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "Username": "sample string 1", "Password": "sample string 2", "Role_Id": "f1d187a5-ba80-42ae-b1f1-2a233097edef", "RefId": "8c5b7799-da71-429e-9cd1-c4e14674b568", "NovaAPIId": "sample string 3" }
application/xml, text/xml
Sample:
<AddUserCommandDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Modules.UserModule.Model"> <NovaAPIId>sample string 3</NovaAPIId> <Password>sample string 2</Password> <RefId>8c5b7799-da71-429e-9cd1-c4e14674b568</RefId> <Role_Id>f1d187a5-ba80-42ae-b1f1-2a233097edef</Role_Id> <Username>sample string 1</Username> </AddUserCommandDto>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
globally unique identifierResponse Formats
application/json, text/json
Sample:
"7ffd6840-526b-47f5-896c-49fb78803f86"
application/xml, text/xml
Sample:
<guid xmlns="http://schemas.microsoft.com/2003/10/Serialization/">7ffd6840-526b-47f5-896c-49fb78803f86</guid>