POST api/ApplicationInfo/InsertUsers

Request Information

URI Parameters

None.

Body Parameters

UsersDto
NameDescriptionTypeAdditional information
Id

integer

None.

Email

string

None.

Name

string

None.

Phone

string

None.

UserName

string

None.

Password

string

None.

IsEnabled

boolean

None.

Isactive

boolean

None.

CreatedDate

date

None.

CreatedBy

integer

None.

UpdatedDate

date

None.

UpdatedBy

integer

None.

RoleId

integer

None.

RetryingAttempts

integer

None.

Islocked

integer

None.

LockedDate

date

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "Email": "sample string 2",
  "Name": "sample string 3",
  "Phone": "sample string 4",
  "UserName": "sample string 5",
  "Password": "sample string 6",
  "IsEnabled": true,
  "Isactive": true,
  "CreatedDate": "2026-05-16T12:55:49.6260668+05:30",
  "CreatedBy": 9,
  "UpdatedDate": "2026-05-16T12:55:49.6260668+05:30",
  "UpdatedBy": 10,
  "RoleId": 1,
  "RetryingAttempts": 1,
  "Islocked": 1,
  "LockedDate": "2026-05-16T12:55:49.6260668+05:30"
}

application/xml, text/xml

Sample:
<UsersDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Geovista.Entity">
  <CreatedBy>9</CreatedBy>
  <CreatedDate>2026-05-16T12:55:49.6260668+05:30</CreatedDate>
  <Email>sample string 2</Email>
  <Id>1</Id>
  <IsEnabled>true</IsEnabled>
  <Isactive>true</Isactive>
  <Islocked>1</Islocked>
  <LockedDate>2026-05-16T12:55:49.6260668+05:30</LockedDate>
  <Name>sample string 3</Name>
  <Password>sample string 6</Password>
  <Phone>sample string 4</Phone>
  <RetryingAttempts>1</RetryingAttempts>
  <RoleId>1</RoleId>
  <UpdatedBy>10</UpdatedBy>
  <UpdatedDate>2026-05-16T12:55:49.6260668+05:30</UpdatedDate>
  <UserName>sample string 5</UserName>
</UsersDto>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'UsersDto'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.