PUT saptaxcodesetting/update

Updates an existing SapTaxCodeSetting

Request Information

URI Parameters

None.

Body Parameters

SapTaxCodeSettingUpdateRequest object contains the fields to be updated

SapTaxCodeSettingUpdateRequest
NameDescriptionTypeAdditional information
SapTaxCodeSettingId

integer

None.

CountryId

integer

None.

SapCode

string

None.

Value

string

None.

Description

string

None.

IsActive

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "SapTaxCodeSettingId": 1,
  "CountryId": 2,
  "SapCode": "sample string 3",
  "Value": "sample string 4",
  "Description": "sample string 5",
  "IsActive": true
}

application/xml, text/xml

Sample:
<SapTaxCodeSettingUpdateRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SALT2.Objects.OrganizationObjects">
  <IsActive xmlns="http://schemas.datacontract.org/2004/07/SALT2.Objects">true</IsActive>
  <CountryId>2</CountryId>
  <Description>sample string 5</Description>
  <SapCode>sample string 3</SapCode>
  <Value>sample string 4</Value>
  <SapTaxCodeSettingId>1</SapTaxCodeSettingId>
</SapTaxCodeSettingUpdateRequest>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'SapTaxCodeSettingUpdateRequest'.

Response Information

Resource Description

SapTaxCodeSettingUpdateResponse

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.