GET api/AcumuladosConta/Edita?Ano={Ano}&Conta={Conta}&Moeda={Moeda}
Edita Acumulado Conta.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Ano |
Identificador do Exercício (Ano Contabilístico). |
integer |
Required |
| Conta |
Identificador da Conta. |
string |
Required |
| Moeda |
Código da Moeda. |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Informação do Acumulado Conta.
BEAcumuladoConta| Name | Description | Type | Additional information |
|---|---|---|---|
| Ano |
Ano |
integer |
None. |
| CamposUtil |
Campos do Utilizador |
Collection of BECampo |
None. |
| Conta |
Código da Conta |
string |
None. |
| Moeda |
Moeda em que os valores dos acumulados se encontram representados: Moeda Base ou Moeda Alternativa. |
string |
None. |
| TipoLancamento |
Devolve o Tipo de Lançamento. |
string |
None. |
| Creditos |
Lista de Créditos Mensais. (Indice = Mês (0 a 15)) |
Collection of BEIndiceValor |
None. |
| Debitos |
Lista de Débitos Mensais. (Indice = Mês (0 a 15)) |
Collection of BEIndiceValor |
None. |
| Orcamentos |
Lista de Orçamentos Mensais. (Indice = Mês (1 a 12)) |
Collection of BEIndiceValor |
None. |
Response Formats
application/json, text/json
Sample:
{
"Ano": 1,
"CamposUtil": [
{
"Nome": "sample string 1",
"Valor": {},
"Chave": true
},
{
"Nome": "sample string 1",
"Valor": {},
"Chave": true
}
],
"Conta": "sample string 2",
"Moeda": "sample string 3",
"TipoLancamento": "sample string 4",
"Creditos": null,
"Debitos": null,
"Orcamentos": null
}
text/plain
Sample:
{"Ano":1,"CamposUtil":[{"Nome":"sample string 1","Valor":{},"Chave":true},{"Nome":"sample string 1","Valor":{},"Chave":true}],"Conta":"sample string 2","Moeda":"sample string 3","TipoLancamento":"sample string 4","Creditos":null,"Debitos":null,"Orcamentos":null}