GET api/Secuencia/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Secuencia| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| NumeroSecuencia | integer |
None. |
|
| Identificador | integer |
None. |
|
| Texto | string |
None. |
|
| IdUnico | integer |
None. |
|
| IdUnicoDos | integer |
None. |
|
| Texto2 | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"NumeroSecuencia": 2,
"Identificador": 3,
"Texto": "sample string 4",
"IdUnico": 5,
"IdUnicoDos": 6,
"Texto2": "sample string 7"
}
application/xml, text/xml
Sample:
<Secuencia xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/api.model"> <Id>1</Id> <IdUnico>5</IdUnico> <IdUnicoDos>6</IdUnicoDos> <Identificador>3</Identificador> <NumeroSecuencia>2</NumeroSecuencia> <Texto>sample string 4</Texto> <Texto2>sample string 7</Texto2> </Secuencia>