GET api/assuntos/{idAssunto}

No documentation available.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
idAssunto

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of AssuntoListagemDTO
NameDescriptionTypeAdditional 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.

Response Formats

application/json, text/json

Sample:
[
  {
    "IndAtivo": true,
    "IdAssunto": 2,
    "DescAssunto": "sample string 3"
  },
  {
    "IndAtivo": true,
    "IdAssunto": 2,
    "DescAssunto": "sample string 3"
  }
]

text/html

Sample:
[{"IndAtivo":true,"IdAssunto":2,"DescAssunto":"sample string 3"},{"IndAtivo":true,"IdAssunto":2,"DescAssunto":"sample string 3"}]

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>
    <IndAtivo>true</IndAtivo>
  </AssuntoListagemDTO>
  <AssuntoListagemDTO>
    <DescAssunto>sample string 3</DescAssunto>
    <IdAssunto>2</IdAssunto>
    <IndAtivo>true</IndAtivo>
  </AssuntoListagemDTO>
</ArrayOfAssuntoListagemDTO>