TAG LINE
TAG LINE
SMALL TITLE

Invoice / Item / Type

(API Version v5)


A system categorization of different types of Invoice Items. Examples are: recurring, non-recurring, one-time etc.


What can you do with InvoiceItemType?


Properties

Property Details
identity
READ-ONLY
"identity": 9
Type: Number
This is the unique numeric identifier for the InvoiceItemType
name
"name": "Hello World"
Type: String
System defined name for this Invoice Item Type.
baseInvoiceItemTypeId
"baseInvoiceItemTypeId": 2
Type: Number
Unique identifier for the associated BaseInvoiceItemType object.
baseInvoiceItemTypeName
"baseInvoiceItemTypeName": "Sample Name"
Type: String
The name of the object associated with the baseInvoiceItemTypeId property.
invoiceDetail
"invoiceDetail": "Hello World"
Type: String


End Points

GETInvoiceItemType/
Retrieve all of the InvoiceItemType objects.
Retrieve all of the InvoiceItemType objects.
GET InvoiceItemType/
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "totalCount": 1,
    "items": [
        {
            "identity": 1,
            "name": "Sample Text Data",
            "baseInvoiceItemTypeId": 17,
            "baseInvoiceItemTypeName": "Sample Text Data",
            "invoiceDetail": "Sample Text Data"
        }
    ]
}
GETInvoiceItemType/Paged
Retrieve all of the InvoiceItemType 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 InvoiceItemType objects in a paged fashion.
GET InvoiceItemType/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,
                "name": "Sample Text Data",
                "baseInvoiceItemTypeId": 9,
                "baseInvoiceItemTypeName": "Sample Text Data",
                "invoiceDetail": "Sample Text Data"
            }
        ]
    }
}
GETInvoiceItemType/{id}
Retrieve an instance of the InvoiceItemType object by its ID.
{id}Unique identifier for the InvoiceItemType object.
Retrieve an instance of the InvoiceItemType object by its ID.
GET InvoiceItemType/{id}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "name": "Sample Text Data",
        "baseInvoiceItemTypeId": 2,
        "baseInvoiceItemTypeName": "Sample Text Data",
        "invoiceDetail": "Sample Text Data"
    }
}