Skip to content
SIBISIBI Developers
Esc
navigateopen⌘Jpreview
On this page

OrderingAsset

An asset installed at a property, purchased through Sibi.

type OrderingAsset {
  id: ID!
  createdAt: String!
  manufacturer: String!
  viewUrl: String!
  name: String!
  sku: String!
  serialNumber: String
  category: String!
  subcategories: [String!]!
  returned: Boolean!
  poNumber: String
  orderId: String
  propertyAddress: OrderingAddress!
  property: OrderingAssetProperty!
  dimensions: OrderingAssetDimensions!
  warrantyCoverages: [OrderingWarrantyCoverage!]!
}

id

string - Sibi-assigned identifier. Uniquely identifies this asset.


createdAt

string - When the asset was created, in ISO 8601 format.


manufacturer

string - A slug identifying which shop the product was purchased from.


viewUrl

string - Link to view the asset in Sibi’s web interface.


name

string - Human-readable product name.


sku

string - Manufacturer’s product identifier.


serialNumber

string | null - Defined by the manufacturer and sometimes provided at invoice time.


category

string - Broad product category.


subcategories

string[] - Specific subcategories the product belongs to. May be empty.


returned

boolean - True if this asset has been returned.


poNumber

string | null - External purchase order number provided with the invoice.


orderId

string | null - Unique identifier for the order associated with this asset within Sibi.


propertyAddress

OrderingAddress - The address of the property this asset is installed at.


property

OrderingAssetProperty - The property this asset is installed at.


dimensions

OrderingAssetDimensions - Product measurements. Omits dimensions the product does not report.


warrantyCoverages

OrderingWarrantyCoverage[] - Time-sliced warranty coverage windows for this asset.

Was this page helpful?