TAG LINE
TAG LINE
SMALL TITLE

Tax / Rate

(API Version v6)


Represents an individual tax rate within the system.


What can you do with TaxRate?

  • DELETE Tax/Rate/{id}
    Delete an instance of the TaxRate object.

  • GET Tax/Rate/
    Retrieve all of the TaxRate objects.

  • GET Tax/Rate/Paged
    Retrieve all of the TaxRate objects in a paged fashion.

  • GET Tax/Rate/{id}
    Retrieve an instance of the TaxRate object by its ID.

  • POST Tax/Rate/
    Create a new instance of the TaxRate object.

  • PUT Tax/Rate/{id}
    Update an existing instance of the TaxRate object.


Properties

Property Details
identity
READ-ONLY
"identity": 14
Type: Number
This is the unique numeric identifier for the TaxRate
rate
"rate": 1.13
Type: Number
The multiplier to be used to generate the taxable amount.
name
"name": "VAT"
Type: String
User defined name for the Tax Rate.
ownerId
READ-ONLY
"ownerId": 0
Type: Number
Unique identifier for the associated Owner object.
ownerName
READ-ONLY
"ownerName": "Sample Name"
Type: String
The name of the object associated with the ownerId property.
generalLedgerId
"generalLedgerId": 12
Type: Number
Unique identifier for the associated GeneralLedger object.
generalLedgerName
"generalLedgerName": "Sample Name"
Type: String
The name of the object associated with the generalLedgerId property.
displayName
"displayName": "VAT"
Type: String
User defined friendly name for the Tax Rate.
taxOnTax
"taxOnTax": true
Type: Boolean
Unused
systemGenerated
"systemGenerated": true
Type: Boolean
Whether or not this tax was imported by the system typically in an integration with a 3rd party tax vendor.
taxCategoryId
"taxCategoryId": 0
Type: Number
Unique identifier for the associated TaxCategory object.
taxCategoryName
"taxCategoryName": "Sample Name"
Type: String
The name of the object associated with the taxCategoryId property.


End Points

DELETETax/Rate/{id}
Delete an instance of the TaxRate object. Upon successful delete, this API will return a record of all of the reelated objects deleted with this operation. The specifics on which objects have been deleted will depend on which related objects have been populated in the system.
{id}Unique identifier for the TaxRate object.
Delete an instance of the TaxRate object.
DELETE Tax/Rate/{id}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "delete",
    "results": {
        "totalCount": 4,
        "items": [
            {
                "identity": 1,
                "action": "deleted",
                "dtoTypeKey": "taxRate"
            },
            {
                "lhsId": 2,
                "rhsId": 2,
                "action": "detached",
                "dtoTypeKey": "sampleObjectConnector"
            },
            {
                "foreignKeyIdentity": 2,
                "action": "deleted",
                "dtoTypeKey": "sampleObject"
            }
        ]
    }
}
GETTax/Rate/
Retrieve all of the TaxRate objects.
Retrieve all of the TaxRate objects.
GET Tax/Rate/
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "totalCount": 1,
    "items": [
        {
            "identity": 1,
            "rate": 1.13,
            "name": "VAT",
            "ownerId": 19,
            "ownerName": "Sample Text Data",
            "generalLedgerId": 23,
            "generalLedgerName": "Sample Text Data",
            "displayName": "VAT",
            "taxOnTax": true,
            "systemGenerated": true,
            "taxCategoryId": 9,
            "taxCategoryName": "Sample Text Data"
        }
    ]
}
GETTax/Rate/Paged
Retrieve all of the TaxRate objects in a paged fashion. This endpoint implements pagination for its results. Individual pages can be requested to return a particular paged set in the list of results. To learn more, see details on working with paginated endpoints.
Retrieve all of the TaxRate objects in a paged fashion.
GET Tax/Rate/Paged
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "pagination": {
        "pageNumber": 1,
        "pageSize": 20,
        "excludeTotalCount": false
    },
    "pagedResults": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "rate": 1.13,
                "name": "VAT",
                "ownerId": 24,
                "ownerName": "Sample Text Data",
                "generalLedgerId": 12,
                "generalLedgerName": "Sample Text Data",
                "displayName": "VAT",
                "taxOnTax": true,
                "systemGenerated": true,
                "taxCategoryId": 12,
                "taxCategoryName": "Sample Text Data"
            }
        ]
    }
}
GETTax/Rate/{id}
Retrieve an instance of the TaxRate object by its ID.
{id}Unique identifier for the TaxRate object.
Retrieve an instance of the TaxRate object by its ID.
GET Tax/Rate/{id}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "rate": 1.13,
        "name": "VAT",
        "ownerId": 2,
        "ownerName": "Sample Text Data",
        "generalLedgerId": 27,
        "generalLedgerName": "Sample Text Data",
        "displayName": "VAT",
        "taxOnTax": true,
        "systemGenerated": true,
        "taxCategoryId": 14,
        "taxCategoryName": "Sample Text Data"
    }
}
POSTTax/Rate/
Create a new instance of the TaxRate object.
Create a new instance of the TaxRate object.
POST Tax/Rate/

{
    "rate": 1.13,
    "name": "VAT",
    "generalLedgerId": 2,
    "displayName": "VAT",
    "taxOnTax": true,
    "systemGenerated": true,
    "taxCategoryId": 21
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "create",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "rate": 1.13,
                "name": "VAT",
                "ownerId": 14,
                "ownerName": "Sample Text Data",
                "generalLedgerId": 6,
                "generalLedgerName": "Sample Text Data",
                "displayName": "VAT",
                "taxOnTax": true,
                "systemGenerated": true,
                "taxCategoryId": 19,
                "taxCategoryName": "Sample Text Data"
            }
        ]
    }
}
PUTTax/Rate/{id}
Update an existing instance of the TaxRate object.
Update an existing instance of the TaxRate object.
PUT Tax/Rate/{id}

{
    "identity": 1,
    "rate": 1.13,
    "name": "VAT",
    "generalLedgerId": 9,
    "displayName": "VAT",
    "taxOnTax": true,
    "systemGenerated": true,
    "taxCategoryId": 22
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "update",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "rate": 1.13,
                "name": "VAT",
                "ownerId": 23,
                "ownerName": "Sample Text Data",
                "generalLedgerId": 24,
                "generalLedgerName": "Sample Text Data",
                "displayName": "VAT",
                "taxOnTax": true,
                "systemGenerated": true,
                "taxCategoryId": 24,
                "taxCategoryName": "Sample Text Data"
            }
        ]
    }
}