Equipment Identity
The following endpoints allow you to manage the identity of your equipments, such as enterprise, year, model, and custom fields.
Update equipment data with assetId or (serialNumber AND make)
The category must exist beforehand and will not be created if it does not exist
Equipment has been modified
Missing parameters or invalid parameters
Unable to authenticate the token
An error occurred while processing the request
PATCH /v2/fleet/equipment HTTP/1.1
Host: api.hiboo.io
x-access-token: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 125
{
"assetId": 1,
"serialNumber": "text",
"make": "text",
"name": "text",
"category": "text",
"model": "text",
"entreprise": "text",
"year": 1
}
{
"status": "OK"
}
add assetCustomFields data with assetId or (serialNumber AND make)
AssetCustomFields has been added
Missing parameters or invalid parameters
Unable to authenticate the token
An error occurred while processing the request
POST /v2/fleet/equipment/assetCustomFields HTTP/1.1
Host: api.hiboo.io
x-access-token: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 98
{
"assetId": 1,
"serialNumber": "text",
"make": "text",
"customFields": [
{
"label": "text",
"value": "text"
}
]
}
{
"status": "OK"
}
delete assetCustomFields data with assetId or (serialNumber AND make)
AssetCustomFields has been deleted
Missing parameters or invalid parameters
Unable to authenticate the token
An error occurred while processing the request
DELETE /v2/fleet/equipment/assetCustomFields HTTP/1.1
Host: api.hiboo.io
x-access-token: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 98
{
"assetId": 1,
"serialNumber": "text",
"make": "text",
"customFields": [
{
"label": "text",
"value": "text"
}
]
}
{
"status": "OK"
}
Was this helpful?