TAG LINE
TAG LINE
SMALL TITLE
A system categorization of different types of Invoice Items. Examples are: recurring, non-recurring, one-time etc.
identity READ-ONLY | "identity": 2 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": 25 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 A more detailed description of the invoice item type. |
GET | InvoiceItemType/ |
Retrieve all of the InvoiceItemType objects. | |
Retrieve all of the InvoiceItemType objects. GET InvoiceItemType/ HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "totalCount": 1, "items": [ { "identity": 1, "name": "Sample Text Data", "baseInvoiceItemTypeId": 6, "baseInvoiceItemTypeName": "Sample Text Data", "invoiceDetail": "Sample Text Data" } ] } |
GET | InvoiceItemType/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 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": 13, "baseInvoiceItemTypeName": "Sample Text Data", "invoiceDetail": "Sample Text Data" } ] } } |
GET | InvoiceItemType/{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} HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "instance": { "identity": 1, "name": "Sample Text Data", "baseInvoiceItemTypeId": 22, "baseInvoiceItemTypeName": "Sample Text Data", "invoiceDetail": "Sample Text Data" } } |