GET api/Sexos
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of Sexos| Name | Description | Type | Additional information |
|---|---|---|---|
| SexoID | integer |
None. |
|
| Sexo | string |
Required String length: inclusive between 0 and 100 |
|
| Sigla | string |
Required String length: inclusive between 0 and 1 |
Response Formats
application/json, text/json
Sample:
[
{
"SexoID": 1,
"Sexo": "sample string 2",
"Sigla": "sample string 3"
},
{
"SexoID": 1,
"Sexo": "sample string 2",
"Sigla": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfSexos xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Sexos>
<SexoID>1</SexoID>
<Sexo>sample string 2</Sexo>
<Sigla>sample string 3</Sigla>
</Sexos>
<Sexos>
<SexoID>1</SexoID>
<Sexo>sample string 2</Sexo>
<Sigla>sample string 3</Sigla>
</Sexos>
</ArrayOfSexos>