Skip to main content

PayableItem

A payable item.

type PayableItem {
cost: Float!
createdAt: DateTime!
createdBy: String
eventId: ID!
exchangeRate: PositiveFloat
id: ID!
incomeAccount: Account!
lastModifiedAt: DateTime!
lastModifiedBy: String
name: String
outstandingBalance: Float!
ownedBy: Contact!
paidBy: Contact!
target: PayableItemTarget!
targetQuantity: NonNegativeInt!
}

Fields

PayableItem.cost ● Float! non-null scalar

The cost of the payable item in the event default currency.

PayableItem.createdAt ● DateTime! non-null scalar

The date and time the record was created.

PayableItem.createdBy ● String scalar

UTF-8 string value that represents the username of the user who created the record. Optional.

PayableItem.eventId ● ID! non-null scalar

The identifier of the event the payable item is associated with.

PayableItem.exchangeRate ● PositiveFloat scalar

The exchange rate between the event default currency and the payable item currency. Optional.

When null, the payable item is using the event default currency.

PayableItem.id ● ID! non-null scalar

The unique identifier of the record.

PayableItem.incomeAccount ● Account! non-null object

The income account for the payable item.

PayableItem.lastModifiedAt ● DateTime! non-null scalar

The date and time the record was last modified.

PayableItem.lastModifiedBy ● String scalar

UTF-8 string value that represents the username of the user who last modified the record. Optional.

PayableItem.name ● String scalar

The name of the payable item. Optional.

PayableItem.outstandingBalance ● Float! non-null scalar

The outstanding balance for the payable item in the event default currency.

PayableItem.ownedBy ● Contact! non-null object

The contact who owned the payable item.

PayableItem.paidBy ● Contact! non-null object

The contact who paid for the payable item.

PayableItem.target ● PayableItemTarget! non-null object

The target of the of the payable item.

PayableItem.targetQuantity ● NonNegativeInt! non-null scalar

The quantity of target items associated with the record.

Returned By

payableItems query

Member Of

InvoiceLineItem object ● JournalEntry object ● PaymentLineItem object