GET api/Acesso/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

Acesso
NameDescriptionTypeAdditional information
Id

integer

None.

Usuario

string

String length: inclusive between 0 and 50

NomeCompleto

string

String length: inclusive between 0 and 150

DataHora

date

None.

Ip

string

String length: inclusive between 0 and 50

Latitude

string

String length: inclusive between 0 and 25

Longitude

string

String length: inclusive between 0 and 25

RE

string

String length: inclusive between 0 and 7

Cargo

string

String length: inclusive between 0 and 50

Response Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "Usuario": "sample string 2",
  "NomeCompleto": "sample string 3",
  "DataHora": "2025-05-03T05:13:51.2895706-03:00",
  "Ip": "sample string 4",
  "Latitude": "sample string 5",
  "Longitude": "sample string 6",
  "RE": "sample string 7",
  "Cargo": "sample string 8"
}

application/xml, text/xml

Sample:
<Acesso xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApiCohab.Models">
  <Cargo>sample string 8</Cargo>
  <DataHora>2025-05-03T05:13:51.2895706-03:00</DataHora>
  <Id>1</Id>
  <Ip>sample string 4</Ip>
  <Latitude>sample string 5</Latitude>
  <Longitude>sample string 6</Longitude>
  <NomeCompleto>sample string 3</NomeCompleto>
  <RE>sample string 7</RE>
  <Usuario>sample string 2</Usuario>
</Acesso>