POST api/User/SetUserLogged_v3

Request Information

URI Parameters

None.

Body Parameters

UserLogged
NameDescriptionTypeAdditional information
Id

integer

None.

UserName

string

None.

Sub

string

None.

LoggedTime

date

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "UserName": "sample string 2",
  "Sub": "sample string 3",
  "LoggedTime": "2025-12-09T18:43:55.7674976-08:00"
}

application/xml, text/xml

Sample:
<UserLogged xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AMS.Models">
  <Id>1</Id>
  <LoggedTime>2025-12-09T18:43:55.7674976-08:00</LoggedTime>
  <Sub>sample string 3</Sub>
  <UserName>sample string 2</UserName>
</UserLogged>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Results
NameDescriptionTypeAdditional information
OBJETO

Object

None.

MENSAJE

string

None.

STATUS

string

None.

Response Formats

application/json, text/json

Sample:
{
  "OBJETO": {},
  "MENSAJE": "sample string 2",
  "STATUS": "sample string 3"
}

application/xml, text/xml

Sample:
<Results xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AMS.Models">
  <MENSAJE>sample string 2</MENSAJE>
  <OBJETO />
  <STATUS>sample string 3</STATUS>
</Results>