In Steps 1-4, you set up TMS integration by synchronizing TMS entities. In this step, use a GET
call and then a PUT
call to sync your assets between the two systems.
Motive supports bidirectional synchronization of all available entities on both platforms (users, vehicles, and assets). Begin your complete TMS integration by synchronizing all the entities. In this step, we continue setup with assets.
List Assets: GET https://api.keeptruckin.com/v1/assets
GET https://api.keeptruckin.com/v1/assets
To ensure that all your available asset IDs and other details are stored (and correct) on the Motive platform, begin by retrieving a list of assets by calling GET https://api.keeptruckin.com/v1/assets
. Your call returns a list of assets associated with your company on the Motive platform, and details about the assets (these are numerous and include the assets’ types, models, asset gateway information, and current status).
Update an Asset: PUT https://api.keeptruckin.com/v1/assets/:id
PUT https://api.keeptruckin.com/v1/assets/:id
Cross-reference the list with the data stored in your system, and synchronize the two by updating Motive's data with a PUT
request to https://api.keeptruckin.com/v1/assets/:id
in which you update the external_id
field. This is the field where we store your internal TMS ID for the asset. This way, any updates you make to our system will include your own internal IDs in addition to those Motive assigns to assets.
In your update, provide one or more external_id
s for each asset by providing with each external_id
an associated integration_name
, as follows:
"external_ids":[
{
"external_id":"201",
"integration_name":"generic_tms"
},
{
"external_id":"Crane123",
"integration_name":"generic_maintenance_system"
}
Update any other necessary parameters to synchronize the two systems.
Learn more
Read our reference documentation about the Assets object, the GET call, and the PUT call for details.