GET api/assuntos/{idAssunto}
No documentation available.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
idAssunto | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of AssuntoListagemDTOName | Description | Type | Additional information |
---|---|---|---|
IndAtivo |
Indica se o assunto está ativo ou inativo |
boolean |
None. |
IdAssunto |
Identificador do assunto |
integer |
None. |
DescAssunto |
Descrição do assunto. |
string |
None. |
IndFormEspecifico |
Indicação de formulário específico para o assunto |
boolean |
None. |
Response Formats
application/json, text/json
Sample:
[ { "IndAtivo": true, "IdAssunto": 2, "DescAssunto": "sample string 3", "IndFormEspecifico": true }, { "IndAtivo": true, "IdAssunto": 2, "DescAssunto": "sample string 3", "IndFormEspecifico": true } ]
text/html
Sample:
[{"IndAtivo":true,"IdAssunto":2,"DescAssunto":"sample string 3","IndFormEspecifico":true},{"IndAtivo":true,"IdAssunto":2,"DescAssunto":"sample string 3","IndFormEspecifico":true}]
application/xml, text/xml
Sample:
<ArrayOfAssuntoListagemDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ouvidorias.Api.Models.DTO"> <AssuntoListagemDTO> <DescAssunto>sample string 3</DescAssunto> <IdAssunto>2</IdAssunto> <IndFormEspecifico>true</IndFormEspecifico> <IndAtivo>true</IndAtivo> </AssuntoListagemDTO> <AssuntoListagemDTO> <DescAssunto>sample string 3</DescAssunto> <IdAssunto>2</IdAssunto> <IndFormEspecifico>true</IndFormEspecifico> <IndAtivo>true</IndAtivo> </AssuntoListagemDTO> </ArrayOfAssuntoListagemDTO>