Project other item object

Scheduled miscellaneous items to bill to a project. Includes items like products, licenses, deliverables, or other materials. Only available for billable projects.

Example

{
  "id": "73d767f4-facc-464b-8053-e735da049d90",
  "date": "2022-01-18",
  "quantity": 50,
  "rate": 100,
  "fee": 5000,
  "description": "Outsourced consulting to XYZ Company",
  "invoiced": false,
  "createdAt": "2022-01-25T17:41:53.973Z",
  "project": {
    "id": "095e0780-48bf-472c-8deb-2fc3ebc7d90c",
    "name": "Vendor Portal",
    "client": {
      "id": "4cacdf11-71d1-4fbb-90ee-b091803581b0",
      "name": "Joe's Shop"
    }
  },
  "invoiceItem": {
    "id": "aba04832-216c-463e-8998-c520948f707c",
    "name": "Consulting Services"
  }
}

Attributes

NameTypeDescription
iduuidThe unique identifier for the object.
datedateThe date of the item. Will be in the form YYYY-MM-DD.
quantitynumberAn optional quantity applied for calculating the fee.
ratenumberAn optional rate applied for calculating the fee.
feenumberThe total amount of the item.
descriptionstringA description of the item being charged.
invoicedbooleanFlag to indicate if the item has been invoiced.
createdAttimestampThe timestamp when the object was created.
projectobjectA simple object to the related project. See attributes.
invoiceItemobjectA simple object to the related invoice item. See attributes.

Project attributes

NameTypeDescription
iduuidThe unique identifier for the object.
namestringThe name of the project.
clientobjectA simple object to the related client. See attributes.

Client attributes

NameTypeDescription
iduuidThe unique identifier for the object.
namestringThe name of the client.

Invoice item attributes

NameTypeDescription
iduuidThe unique identifier for the object.
namestringThe name of the invoice item.