GET api/TUser/{id}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | string |
Required |
Body Parameters
None.
Response Information
Resource Description
TUserName | Description | Type | Additional information |
---|---|---|---|
Id | string |
String length: inclusive between 0 and 250 |
|
IdRol | string |
Required String length: inclusive between 0 and 60 |
|
Name | string |
String length: inclusive between 0 and 250 |
|
LastName | string |
Required String length: inclusive between 0 and 250 |
|
SecondLastName | string |
String length: inclusive between 0 and 250 |
|
Status | string |
Required String length: inclusive between 0 and 30 |
|
RegisterDate | date |
None. |
|
LastEditDate | date |
None. |
|
Password | string |
Required String length: inclusive between 0 and 250 |
|
RecoveryEmail | string |
Required String length: inclusive between 0 and 250 |
|
Pin | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "Id": "sample string 1", "IdRol": "sample string 2", "Name": "sample string 3", "LastName": "sample string 4", "SecondLastName": "sample string 5", "Status": "sample string 6", "RegisterDate": "2024-11-13T20:33:34.5437774-08:00", "LastEditDate": "2024-11-13T20:33:34.5437774-08:00", "Password": "sample string 9", "RecoveryEmail": "sample string 10", "Pin": "sample string 11" }
application/xml, text/xml
Sample:
<TUser xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Uniqueness.Store.Ticket.API.Models"> <Id>sample string 1</Id> <IdRol>sample string 2</IdRol> <LastEditDate>2024-11-13T20:33:34.5437774-08:00</LastEditDate> <LastName>sample string 4</LastName> <Name>sample string 3</Name> <Password>sample string 9</Password> <Pin>sample string 11</Pin> <RecoveryEmail>sample string 10</RecoveryEmail> <RegisterDate>2024-11-13T20:33:34.5437774-08:00</RegisterDate> <SecondLastName>sample string 5</SecondLastName> <Status>sample string 6</Status> </TUser>