GET api/Permiso/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Permisos| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Nombre | string |
None. |
|
| Descripcion | string |
None. |
|
| Sitio | string |
None. |
|
| Tipo | string |
None. |
|
| PadreId | integer |
None. |
|
| Orden | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"Nombre": "sample string 2",
"Descripcion": "sample string 3",
"Sitio": "sample string 4",
"Tipo": "sample string 5",
"PadreId": 1,
"Orden": 6
}
application/xml, text/xml
Sample:
<Permisos xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ControlDocumentario.Services.Models"> <Descripcion>sample string 3</Descripcion> <Id>1</Id> <Nombre>sample string 2</Nombre> <Orden>6</Orden> <PadreId>1</PadreId> <Sitio>sample string 4</Sitio> <Tipo>sample string 5</Tipo> </Permisos>