The Item object
A Rutter Item represents a good or service that is sold by a business entity.
Properties
id
stringThe Rutter generated unique ID of the item.
name
stringnullableThe name of the item.
code
stringnullableThe reference code of the item.
updated_at
stringThe ISO 8601 timestamp that the item was last updated.
status
enumThe status of the item.
type
enumThe type of the item.
bill_item
objectItem details associated with a bill (when the item was purchased).
bill_item
attributesinvoice_item
objectItem details associated with an invoice (when the item was sold).
invoice_item
attributesplatform_data
optionalThe raw platform data corresponding to the Rutter object.
{
"id": "00000000-0000-0000-0000-000000000000",
"name": "Rutter Shirt",
"code": "1234",
"status": "active",
"type": "inventory",
"bill_item": {
"description": "A Rutter shirt.",
"unit_price": "12.34"
},
"invoice_item": {
"description": "A Rutter shirt.",
"unit_price": "12.34"
},
"updated_at": "2023-01-02T02:34:56.000Z"
}
List Items
GET /accounting/itemsRequest Parameters
access_token
stringqueryThe access token of the connection.
cursor
stringoptionalqueryThe cursor to use for pagination. This value is passed in from next_cursor
field in a previous request.
expand
enumoptionalqueryUsed to request inclusion of optional objects.
force_fetch
enumoptionalqueryForce a response even if the underlying connection hasn't finished the initial sync.
limit
integeroptionalqueryThe limit on the number of entities returned.
updated_at_max
integeroptionalqueryThe Unix Timestamp in milliseconds maximum updated_at datetime to fetch entities from.
updated_at_min
integeroptionalqueryThe Unix Timestamp in milliseconds minimum updated_at datetime to fetch entities from.
Response Body
items
arrayitems
attributesnext_cursor
stringnullable{
"items": [
{
"id": "00000000-0000-0000-0000-000000000000",
"name": "Rutter Shirt",
"code": "1234",
"status": "active",
"type": "inventory",
"bill_item": {
"description": "A Rutter shirt.",
"unit_price": "12.34"
},
"invoice_item": {
"description": "A Rutter shirt.",
"unit_price": "12.34"
},
"updated_at": "2023-01-02T02:34:56.000Z"
}
],
"next_cursor": "MTY3NDgzMTk0Ml82MDY4ZDI0ZC02NGRmLTRmN2EtYTM0Ny0zN2ZmNjY5MGVmMjU="
}