POST api/User
Request Information
URI Parameters
None.
Body Parameters
UserDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| UserName | string |
None. |
|
| Password | string |
None. |
|
| UserLevel | string |
None. |
|
| DateCreated | date |
None. |
|
| CreatedBy | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserName": "sample string 1",
"Password": "sample string 2",
"UserLevel": "sample string 3",
"DateCreated": "2026-09-25T20:08:07.6669248+08:00",
"CreatedBy": "sample string 5"
}
application/xml, text/xml
Sample:
<UserDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.BasicBigJ.Domain.Models"> <CreatedBy>sample string 5</CreatedBy> <DateCreated>2026-09-25T20:08:07.6669248+08:00</DateCreated> <Password>sample string 2</Password> <UserLevel>sample string 3</UserLevel> <UserName>sample string 1</UserName> </UserDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.