POST api/auth/api/user

Request Information

URI Parameters

None.

Body Parameters

TK_Users
NameDescriptionTypeAdditional information
UserId

integer

None.

CompanyId

integer

None.

UserName

string

None.

UserType

string

None.

Password

string

None.

UserImageUrl

string

None.

UserStatus

boolean

None.

UserCreatedOn

date

None.

Request Formats

application/json, text/json

Sample:
{
  "UserId": 1,
  "CompanyId": 2,
  "UserName": "sample string 3",
  "UserType": "sample string 4",
  "Password": "sample string 5",
  "UserImageUrl": "sample string 6",
  "UserStatus": true,
  "UserCreatedOn": "2025-11-08T18:25:14.0454235+05:30"
}

application/xml, text/xml

Sample:
<TK_Users xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/XeniaTempleKioskApi.Models">
  <CompanyId>2</CompanyId>
  <Password>sample string 5</Password>
  <UserCreatedOn>2025-11-08T18:25:14.0454235+05:30</UserCreatedOn>
  <UserId>1</UserId>
  <UserImageUrl>sample string 6</UserImageUrl>
  <UserName>sample string 3</UserName>
  <UserStatus>true</UserStatus>
  <UserType>sample string 4</UserType>
</TK_Users>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

APIResponse
NameDescriptionTypeAdditional information
Status

string

None.

Data

Object

None.

Message

string

None.

Type

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": "sample string 1",
  "Data": {},
  "Message": "sample string 3",
  "Type": 4
}

application/xml, text/xml

Sample:
<APIResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/XeniaTempleKioskApi.Models">
  <Data />
  <Message>sample string 3</Message>
  <Status>sample string 1</Status>
  <Type>4</Type>
</APIResponse>