GET api/TabelaAuxiliar/GetCargo?token={token}
Retorna lista de Cargos cadastrados no sistema
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| token |
Valor recebido pelo método Login >> Entrar |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Cargo| Name | Description | Type | Additional information |
|---|---|---|---|
| CDCARGO |
Código do cargo |
integer |
None. |
| DSCARGO |
Descrição do cargo |
string |
Max length: 60 |
Response Formats
application/json, text/json
Sample:
[
{
"CDCARGO": 1,
"DSCARGO": "sample string 2"
},
{
"CDCARGO": 1,
"DSCARGO": "sample string 2"
}
]