/buildops-assets | Type: Application | PCID required: Yes
Tools
| Tool | Description |
|---|---|
buildops-assets_get_v1_asset_makes | Get list of asset makes |
buildops-assets_get_v1_asset_makes_make_id | Get asset make |
buildops-assets_get_v1_asset_types | Get Asset Types List by tenantId |
buildops-assets_get_v1_assets | Get Property Assets List By tenantId |
buildops-assets_patch_v1_asset_makes_make_id | Update asset make |
buildops-assets_patch_v1_assets_asset_id | Update property asset |
buildops-assets_post_v1_asset_makes | Create asset make |
buildops-assets_post_v1_asset_makes_make_id_archive | Archive asset make |
buildops-assets_post_v1_asset_makes_make_id_unarchive | Unarchive asset make |
buildops-assets_post_v1_assets | Create property asset |
buildops-assets_get_v1_asset_makes
Get list of asset makes Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
page | number | No | — | Page number |
page_size | number | No | — | Number of items per page |
include_archived | boolean | No | — | Flag to include archived items in the response |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"page": {
"type": "number",
"description": "Page number"
},
"page_size": {
"type": "number",
"description": "Number of items per page"
},
"include_archived": {
"type": "boolean",
"description": "Flag to include archived items in the response"
}
},
"required": [
"PCID"
]
}
buildops-assets_get_v1_asset_makes_make_id
Get asset make Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
makeId | string | Yes | — | Make Id |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"makeId": {
"type": "string",
"description": "Make Id"
}
},
"required": [
"PCID",
"makeId"
]
}
buildops-assets_get_v1_asset_types
Get Asset Types List by tenantId Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
page | integer | No | — | Page number for pagination |
page_size | integer | No | — | Number of items per page |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"page": {
"type": "integer",
"description": "Page number for pagination"
},
"page_size": {
"type": "integer",
"description": "Number of items per page"
}
},
"required": [
"PCID"
]
}
buildops-assets_get_v1_assets
Get Property Assets List By tenantId Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
page | integer | No | — | Page number for pagination |
page_size | integer | No | — | Number of items per page |
property_id | string | No | — | Property ID |
include_inactive | boolean | No | — | If this parameter is passed as true, this endpoint will return inactive vendors. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"page": {
"type": "integer",
"description": "Page number for pagination"
},
"page_size": {
"type": "integer",
"description": "Number of items per page"
},
"property_id": {
"type": "string",
"description": "Property ID"
},
"include_inactive": {
"type": "boolean",
"description": "If this parameter is passed as true, this endpoint will return inactive vendors."
}
},
"required": [
"PCID"
]
}
buildops-assets_patch_v1_asset_makes_make_id
Update asset make Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
makeId | string | Yes | — | Make Id |
name | string | No | — | The name value |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"makeId": {
"type": "string",
"description": "Make Id"
},
"name": {
"type": "string",
"description": "The name value"
}
},
"required": [
"PCID",
"makeId"
]
}
buildops-assets_patch_v1_assets_asset_id
Update property asset Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
assetId | string | Yes | — | Asset Id |
assetName | string | No | — | Asset Name |
assetTypeId | string | No | — | Asset Type Id |
barCodeId | string | No | — | Bar Code ID associated with the asset |
bluonAssetModel | string | No | — | Bluon asset model |
imageUrl | string | No | — | URL of the asset image |
installDate | number | No | — | Installation date as a Unix timestamp (seconds since epoch) |
internalIdentifier | string | No | — | Custom internal identifier |
lifeExpectancyInYears | number | No | — | Life expectancy in years |
location | string | No | — | Location within the property |
makeId | string | No | — | Make Id |
manufacturedDate | string | No | — | Manufactured date in ISO 8601 format (YYYY-MM-DDTHH:mm:ss.sssZ) |
modelNumber | string | No | — | Model Number |
namePlateImageUrl | string | No | — | URL of the nameplate image |
ownerIdentifier | string | No | — | Identifier assigned by the owner |
propertyZone | string | No | — | Zone within the property |
qrCodeId | string | No | — | QR Code ID associated with the asset |
serialNo | string | No | — | Serial No |
weight | number | No | — | Expected remaining life expectancy in years |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"assetId": {
"type": "string",
"description": "Asset Id"
},
"assetName": {
"type": "string",
"description": "Asset Name"
},
"assetTypeId": {
"type": "string",
"description": "Asset Type Id"
},
"barCodeId": {
"type": "string",
"description": "Bar Code ID associated with the asset"
},
"bluonAssetModel": {
"type": "string",
"description": "Bluon asset model"
},
"imageUrl": {
"type": "string",
"description": "URL of the asset image"
},
"installDate": {
"type": "number",
"description": "Installation date as a Unix timestamp (seconds since epoch)"
},
"internalIdentifier": {
"type": "string",
"description": "Custom internal identifier"
},
"lifeExpectancyInYears": {
"type": "number",
"description": "Life expectancy in years"
},
"location": {
"type": "string",
"description": "Location within the property"
},
"makeId": {
"type": "string",
"description": "Make Id"
},
"manufacturedDate": {
"type": "string",
"description": "Manufactured date in ISO 8601 format (YYYY-MM-DDTHH:mm:ss.sssZ)"
},
"modelNumber": {
"type": "string",
"description": "Model Number"
},
"namePlateImageUrl": {
"type": "string",
"description": "URL of the nameplate image"
},
"ownerIdentifier": {
"type": "string",
"description": "Identifier assigned by the owner"
},
"propertyZone": {
"type": "string",
"description": "Zone within the property"
},
"qrCodeId": {
"type": "string",
"description": "QR Code ID associated with the asset"
},
"serialNo": {
"type": "string",
"description": "Serial No"
},
"weight": {
"type": "number",
"description": "Expected remaining life expectancy in years"
}
},
"required": [
"PCID",
"assetId"
]
}
buildops-assets_post_v1_asset_makes
Create asset make Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
name | string | Yes | — | The name value |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"name": {
"type": "string",
"description": "The name value"
}
},
"required": [
"PCID",
"name"
]
}
buildops-assets_post_v1_asset_makes_make_id_archive
Archive asset make Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
makeId | string | Yes | — | Make Id |
replacementMakeId | string | No | — | Replacement Make Id |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"makeId": {
"type": "string",
"description": "Make Id"
},
"replacementMakeId": {
"type": "string",
"description": "Replacement Make Id"
}
},
"required": [
"PCID",
"makeId"
]
}
buildops-assets_post_v1_asset_makes_make_id_unarchive
Unarchive asset make Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
makeId | string | Yes | — | Make Id |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"makeId": {
"type": "string",
"description": "Make Id"
}
},
"required": [
"PCID",
"makeId"
]
}
buildops-assets_post_v1_assets
Create property asset Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
assetName | string | Yes | — | Asset Name |
assetTypeId | string | Yes | — | Asset Type Id |
barCodeId | string | No | — | Bar Code ID associated with the asset |
bluonAssetModel | string | No | — | Bluon asset model |
customerPropertyId | string | Yes | — | Customer Property Id |
imageUrl | string | No | — | URL of the asset image |
installDate | number | No | — | Installation date as a Unix timestamp (seconds since epoch) |
internalIdentifier | string | No | — | Custom internal identifier |
lifeExpectancyInYears | number | No | — | Life expectancy in years |
location | string | No | — | Location within the property |
makeId | string | No | — | Make Id |
manufacturedDate | string | No | — | Manufactured date in ISO 8601 format (YYYY-MM-DDTHH:mm:ss.sssZ) |
modelNumber | string | No | — | Model Number |
namePlateImageUrl | string | No | — | URL of the nameplate image |
ownerIdentifier | string | No | — | Identifier assigned by the owner |
propertyZone | string | No | — | Zone within the property |
qrCodeId | string | No | — | QR Code ID associated with the asset |
serialNo | string | No | — | Serial No |
weight | number | No | — | Expected remaining life expectancy in years |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"assetName": {
"type": "string",
"description": "Asset Name"
},
"assetTypeId": {
"type": "string",
"description": "Asset Type Id"
},
"barCodeId": {
"type": "string",
"description": "Bar Code ID associated with the asset"
},
"bluonAssetModel": {
"type": "string",
"description": "Bluon asset model"
},
"customerPropertyId": {
"type": "string",
"description": "Customer Property Id"
},
"imageUrl": {
"type": "string",
"description": "URL of the asset image"
},
"installDate": {
"type": "number",
"description": "Installation date as a Unix timestamp (seconds since epoch)"
},
"internalIdentifier": {
"type": "string",
"description": "Custom internal identifier"
},
"lifeExpectancyInYears": {
"type": "number",
"description": "Life expectancy in years"
},
"location": {
"type": "string",
"description": "Location within the property"
},
"makeId": {
"type": "string",
"description": "Make Id"
},
"manufacturedDate": {
"type": "string",
"description": "Manufactured date in ISO 8601 format (YYYY-MM-DDTHH:mm:ss.sssZ)"
},
"modelNumber": {
"type": "string",
"description": "Model Number"
},
"namePlateImageUrl": {
"type": "string",
"description": "URL of the nameplate image"
},
"ownerIdentifier": {
"type": "string",
"description": "Identifier assigned by the owner"
},
"propertyZone": {
"type": "string",
"description": "Zone within the property"
},
"qrCodeId": {
"type": "string",
"description": "QR Code ID associated with the asset"
},
"serialNo": {
"type": "string",
"description": "Serial No"
},
"weight": {
"type": "number",
"description": "Expected remaining life expectancy in years"
}
},
"required": [
"PCID",
"assetName",
"assetTypeId",
"customerPropertyId"
]
}

