Equipment Identity

The following endpoints allow you to manage the identity of your equipments, such as enterprise, year, model, and custom fields.

Update Equipment Identity

patch
/v2/fleet/equipment

Update equipment data with assetId or (serialNumber AND make)

Authorizations
x-access-tokenstringRequired

Generate a JWT when you log in. Use it in your following requests in the header as x-access-token: your-token-here

Body
assetIdnumberOptional
serialNumberstringOptional
makestringOptional
namestringOptional
categorystringOptional

The category must exist beforehand and will not be created if it does not exist

modelstringOptional
entreprisestringOptional
yearone ofOptional
numberOptional
Responses
200

Equipment has been modified

application/json
patch
/v2/fleet/equipment

Add Custom Fields to Equipment

post
/v2/fleet/equipment/assetCustomFields

add assetCustomFields data with assetId or (serialNumber AND make)

Authorizations
x-access-tokenstringRequired

Generate a JWT when you log in. Use it in your following requests in the header as x-access-token: your-token-here

Body
assetIdnumberOptional
serialNumberstringOptional
makestringOptional
Responses
200

AssetCustomFields has been added

application/json
post
/v2/fleet/equipment/assetCustomFields

Remove Custom Fields from Equipment

delete
/v2/fleet/equipment/assetCustomFields

delete assetCustomFields data with assetId or (serialNumber AND make)

Authorizations
x-access-tokenstringRequired

Generate a JWT when you log in. Use it in your following requests in the header as x-access-token: your-token-here

Body
assetIdnumberOptional
serialNumberstringOptional
makestringOptional
Responses
200

AssetCustomFields has been deleted

application/json
delete
/v2/fleet/equipment/assetCustomFields

Last updated

Was this helpful?