POST api/UpdateLocalTaxClassificationDisplayOrder

Request Information

URI Parameters

None.

Body Parameters

Collection of LocalTaxClassificationReorderRowModel
Name Description Type Additional information
LOCAL_TAX_CLASSIFICATION_ID

integer

None.

DISPLAY_ORDER

integer

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "LOCAL_TAX_CLASSIFICATION_ID": 1,
    "DISPLAY_ORDER": 1
  },
  {
    "LOCAL_TAX_CLASSIFICATION_ID": 1,
    "DISPLAY_ORDER": 1
  }
]

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

BaseApiResponse
Name Description Type Additional information
Success

boolean

None.

Message

Collection of string

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "Message": [
    "sample string 1",
    "sample string 2"
  ]
}