POST UserApi/UserAdd
Request Information
URI Parameters
None.
Body Parameters
UserAddVM| Name | Description | Type | Additional information |
|---|---|---|---|
| Username | string |
None. |
|
| TC | string |
None. |
|
| PhoneNumber | string |
None. |
|
| Password | string |
None. |
|
| FullName | string |
None. |
|
| string |
None. |
||
| ID | integer |
None. |
|
| CompanyID | integer |
None. |
|
| IsSuperAdmin | boolean |
None. |
|
| UserType | UserType |
None. |
Request Formats
application/json, text/json
Sample:
{
"Username": "sample string 1",
"TC": "sample string 2",
"PhoneNumber": "sample string 3",
"Password": "sample string 4",
"FullName": "sample string 5",
"Email": "sample string 6",
"ID": 7,
"CompanyID": 8,
"IsSuperAdmin": true,
"UserType": 1
}
application/xml, text/xml
Sample:
<UserAddVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RegexPoint.Models.User"> <CompanyID>8</CompanyID> <Email>sample string 6</Email> <FullName>sample string 5</FullName> <ID>7</ID> <IsSuperAdmin>true</IsSuperAdmin> <Password>sample string 4</Password> <PhoneNumber>sample string 3</PhoneNumber> <TC>sample string 2</TC> <UserType>SuperAdmin</UserType> <Username>sample string 1</Username> </UserAddVM>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.