GET TaxAdjustment/Get/{id}
Gets a specific Tax Adjustment based on the identifier sent through.
Request Information
URI Parameters
| Name | Type | Additional information | Description |
|---|---|---|---|
| id | integer |
Required |
The identifier of the Tax Adjustment. |
Body Parameters
None.
Response Information
Resource Description
Returns the Tax Adjustment object.
Tax Adjustment| Name | Type | Additional information | Description |
|---|---|---|---|
| ID | integer |
None. |
|
| Date | date |
None. |
|
| Description | string |
None. |
|
| Total | decimal |
None. |
|
| TaxPeriodId | nullable integer |
None. |
|
| TaxAdjustmentType | Tax Adjustment Type |
None. |
|
| TaxAdjustmentAccountType | Tax Adjustment Account Type |
None. |
|
| Locked | bool |
Read Only / System Generated |
Response Formats
application/json, text/json
Sample:
{
"ID": 1,
"Date": "2025-12-21",
"Description": "sample string 3",
"Total": 4.0,
"TaxPeriodId": 1,
"TaxAdjustmentType": 1,
"TaxAdjustmentAccountType": 1,
"Locked": true
}