POST api/info/ReajusteEmpresas
Request Information
URI Parameters
None.
Body Parameters
ParametrosEmpresaReajuste| Name | Description | Type | Additional information |
|---|---|---|---|
| anoInicio | integer |
Required |
|
| senha | string |
Required |
Request Formats
application/json, text/json
Sample:
{
"anoInicio": 1,
"senha": "sample string 2"
}
application/xml, text/xml
Sample:
<ParametrosEmpresaReajuste xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WsBensaudeApp2019.Models"> <senha>sample string 2</senha> <anoInicio>1</anoInicio> </ParametrosEmpresaReajuste>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
RetornoReajusteEmpresa| Name | Description | Type | Additional information |
|---|---|---|---|
| EmpresasReajuste | Collection of EmpresaReajuste |
None. |
|
| status | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"EmpresasReajuste": [
{
"contrato": 1,
"enfermaria": "sample string 2",
"descricaoEnf": "sample string 3",
"apartamento": "sample string 4",
"descricaoApt": "sample string 5"
},
{
"contrato": 1,
"enfermaria": "sample string 2",
"descricaoEnf": "sample string 3",
"apartamento": "sample string 4",
"descricaoApt": "sample string 5"
}
],
"status": "sample string 1"
}
application/xml, text/xml
Sample:
<RetornoReajusteEmpresa xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WsBensaudeApp2019.Models">
<status>sample string 1</status>
<EmpresasReajuste>
<EmpresaReajuste>
<apartamento>sample string 4</apartamento>
<contrato>1</contrato>
<descricaoApt>sample string 5</descricaoApt>
<descricaoEnf>sample string 3</descricaoEnf>
<enfermaria>sample string 2</enfermaria>
</EmpresaReajuste>
<EmpresaReajuste>
<apartamento>sample string 4</apartamento>
<contrato>1</contrato>
<descricaoApt>sample string 5</descricaoApt>
<descricaoEnf>sample string 3</descricaoEnf>
<enfermaria>sample string 2</enfermaria>
</EmpresaReajuste>
</EmpresasReajuste>
</RetornoReajusteEmpresa>