PUT api/tipoarquivo/Alterar/{idTipoArquivo}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| idTipoArquivo | globally unique identifier |
Required |
Body Parameters
TipoArquivoModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Descricao | string |
None. |
|
| Nome | string |
None. |
|
| NomeInterno | string |
None. |
|
| Ativo | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "5d10fdd8-a629-4220-8ba3-a5102cb0909a",
"Descricao": "sample string 2",
"Nome": "sample string 3",
"NomeInterno": "sample string 4",
"Ativo": true
}
application/xml, text/xml
Sample:
<TipoArquivoModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aza.AzaSelect.Api.Models"> <Ativo>true</Ativo> <Descricao>sample string 2</Descricao> <Id>5d10fdd8-a629-4220-8ba3-a5102cb0909a</Id> <Nome>sample string 3</Nome> <NomeInterno>sample string 4</NomeInterno> </TipoArquivoModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |