Skip to main content

Get Item Count

GET 

/accounting/items/count

Returns a list of Accounting Items.

Request

Query Parameters

    credentialId stringrequired

    The ID of the credential.

    remoteId string

    Used to filter items with this third-party application ID.

    itemName string

    Used to filter items with the exact item name.

    itemNameContains string

    Used to filter items whose items names contain the provided value.

    itemNameNotEquals string

    Used to filter items whose item name to exclude.

    itemStatus string

    Used to filter items with the exact item status.

    itemType string

    Used to filter items with the exact item type.

    unitPrice float

    Used to filter items with the exact item unit price.

    unitPriceMin float

    Used to filter items with the minimum unit price.

    unitPriceMax float

    Used to filter items with the maximum unit price.

    unitPriceNotEquals float

    Used to filter items whose unit price to exclude.

    purchasePrice float

    Used to filter items with the exact item purchase price.

    purchasePriceMin float

    Used to filter items with the minimum purchase price.

    purchasePriceMax float

    Used to filter items with the maximum purchase price.

    purchasePriceNotEquals float

    Used to filter items whose purchase price to exclude.

    qtyOnHand int32

    Used to filter items with the exact item quantity on hand.

    qtyOnHandMin int32

    Used to filter items with the minimum quantity on hand.

    qtyOnHandMax int32

    Used to filter items with the maximum quantity on hand.

    qtyOnHandNotEquals int32

    Used to filter items whose quantity on hand to exclude.

    billAccountId string

    Used to filter items with this bill account ID.

    invoiceAccountId string

    Used to filter items with this invoice account ID.

    assetAccountId string

    Used to filter items with this asset account ID.

    companyId string

    Used to filter items with this company ID.

    remoteCreatedAtMin date

    Filter objects created in the third-party application after a specified date.

    remoteCreatedAtMax date

    Filter objects created in the third-party application before a specified date.

    remoteUpdatedAtMin date

    Filter objects last updated in the third-party application after a specified date.

    remoteUpdatedAtMax date

    Filter objects last updated in the third-party application before a specified date.

    createdAtMin date

    Filter objects created after a specified date.

    createdAtMax date

    Filter objects created before a specified date.

    updatedAtMin date

    Filter objects last updated after a specified date.

    updatedAtMax date

    Filter objects last updated before a specified date.

Header Parameters

    Authorization stringrequired

    Default value: bearer YOUR_API_KEY

Responses

200

Schema

    count integer

    Default value: 0

Loading...