PUT jurisdictionCode/update
Updates an existing JurisdictionCode
Request Information
URI Parameters
None.
Body Parameters
JurisdictionCodeUpdateRequest object contains the fields to be updated
JurisdictionCodeUpdateRequestName | Description | Type | Additional information |
---|---|---|---|
JurisdictionCodeId | integer |
None. |
|
CountryId | integer |
None. |
|
Code | string |
None. |
|
Account | string |
None. |
|
Description | string |
None. |
|
Rate | string |
None. |
|
SapTaxCodeSettingId | integer |
None. |
|
IsActive | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{ "JurisdictionCodeId": 1, "CountryId": 2, "Code": "sample string 3", "Account": "sample string 4", "Description": "sample string 5", "Rate": "sample string 6", "SapTaxCodeSettingId": 7, "IsActive": true }
application/xml, text/xml
Sample:
<JurisdictionCodeUpdateRequest 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> <Account>sample string 4</Account> <Code>sample string 3</Code> <CountryId>2</CountryId> <Description>sample string 5</Description> <Rate>sample string 6</Rate> <SapTaxCodeSettingId>7</SapTaxCodeSettingId> <JurisdictionCodeId>1</JurisdictionCodeId> </JurisdictionCodeUpdateRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
JurisdictionCodeUpdateResponse
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.