POST api/User/SaveUser

Request Information

URI Parameters

None.

Body Parameters

UserFlat
NameDescriptionTypeAdditional information
UserId

integer

None.

UserType

string

None.

UserTypeId

integer

None.

Name

string

None.

Mobile

string

None.

Password

string

None.

IsActive

boolean

None.

CreatedOn

date

None.

CreatedBy

integer

None.

UpdatedOn

date

None.

UpdatedBy

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "UserId": 1,
  "UserType": "sample string 2",
  "UserTypeId": 3,
  "Name": "sample string 4",
  "Mobile": "sample string 5",
  "Password": "sample string 6",
  "IsActive": true,
  "CreatedOn": "2025-09-22T04:26:37.9674642+00:00",
  "CreatedBy": 8,
  "UpdatedOn": "2025-09-22T04:26:37.9674642+00:00",
  "UpdatedBy": 1
}

application/xml, text/xml

Sample:
<UserFlat xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EasyParking.Entities.FlatModels">
  <CreatedBy>8</CreatedBy>
  <CreatedOn>2025-09-22T04:26:37.9674642+00:00</CreatedOn>
  <IsActive>true</IsActive>
  <Mobile>sample string 5</Mobile>
  <Name>sample string 4</Name>
  <Password>sample string 6</Password>
  <UpdatedBy>1</UpdatedBy>
  <UpdatedOn>2025-09-22T04:26:37.9674642+00:00</UpdatedOn>
  <UserId>1</UserId>
  <UserType>sample string 2</UserType>
  <UserTypeId>3</UserTypeId>
</UserFlat>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

string

Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>