PUT delivery/update
Altera uma taxa existente
Request Information
URI Parameters
None.
Body Parameters
Objeto que será alterado
Fiweb.Models.Administrativo.TaxaEntrega| Name | Description | Type | Additional information |
|---|---|---|---|
| codigo | integer |
None. |
|
| codfilial | integer |
None. |
|
| kmi | decimal number |
None. |
|
| kmf | decimal number |
None. |
|
| valor | decimal number |
None. |
|
| IsPadrao | boolean |
None. |
|
| Nome | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"codigo": 1,
"codfilial": 2,
"kmi": 3.1,
"kmf": 4.1,
"valor": 5.1,
"isPadrao": true,
"nome": "sample string 7"
}
text/html
Sample:
{"codigo":1,"codfilial":2,"kmi":3.1,"kmf":4.1,"valor":5.1,"isPadrao":true,"nome":"sample string 7"}
application/xml, text/xml
Sample:
<TaxaEntrega xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fiweb.Models.Administrativo"> <IsPadrao>true</IsPadrao> <Nome>sample string 7</Nome> <codfilial>2</codfilial> <codigo>1</codigo> <kmf>4.1</kmf> <kmi>3.1</kmi> <valor>5.1</valor> </TaxaEntrega>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
stringResponse Formats
application/json, text/json, text/html
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>