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": "6d308698-0d09-4e62-a5c8-83c23663b843", "RefId": "14b7b545-1405-427d-a911-89fde1bd2ab4", "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>14b7b545-1405-427d-a911-89fde1bd2ab4</RefId> <Role_Id>6d308698-0d09-4e62-a5c8-83c23663b843</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:
"2753d16d-4797-4b78-ae1d-7be565e5f67b"
application/xml, text/xml
Sample:
<guid xmlns="http://schemas.microsoft.com/2003/10/Serialization/">2753d16d-4797-4b78-ae1d-7be565e5f67b</guid>