Asset
Assets represent individual real-world objects stored in the system, such as a specific vehicle or person, and geospatial objects, such as a POI or geofence.
Asset object
Asset endpoints
Returns all assets available to the organization
OAuth 2.0 authentication for Europe. Use this for users based in Europe and adjacent regions.
- : OpenID Connect scope
- : Basic user profile
- : User e-mail address
A search query string
Maximum number of items to return (default: 100, max: 1000)
The index of the first item to return (default: 0)
Sort expression. Supports one or more fields, optionally prefixed with - to indicate descending order. For example, label,-created_at
List of assets
Invalid request or validation error
Authentication is required
GET /repo/v0/asset/list HTTP/1.1
Host: api.navixy.com
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
"data": [],
"has_more": true
}Returns all assets available to the organization with advanced filtering options
OAuth 2.0 authentication for Europe. Use this for users based in Europe and adjacent regions.
- : OpenID Connect scope
- : Basic user profile
- : User e-mail address
A search query string
Maximum number of items to return
100The index of the first item to return
0Sort expression. Supports one or more fields, optionally prefixed with - to indicate descending order. For example, label,-created_at
List of assets
Invalid request or validation error
Authentication is required
POST /repo/v0/asset/list HTTP/1.1
Host: api.navixy.com
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 129
{
"q": "text",
"conditions": {
"type": "gte",
"field": "created_at",
"value": "2025-07-12T17:00:00Z"
},
"limit": 100,
"offset": 0,
"sort": "text"
}{
"data": [],
"has_more": true
}Adds an asset for the organization
OAuth 2.0 authentication for Europe. Use this for users based in Europe and adjacent regions.
- : OpenID Connect scope
- : Basic user profile
- : User e-mail address
Defines the request schema for /asset/create
Unique identifier for the asset's type
12The asset’s title/name
Aspen V6 GTXAsset created successfully
Invalid request or validation error
Authentication is required
POST /repo/v0/asset/create HTTP/1.1
Host: api.navixy.com
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 96
{
"type_id": 12,
"label": "Aspen V6 GTX",
"fields": {
"131312": {
"type": "text",
"value": "I love text!"
}
}
}{
"id": 123
}Returns an asset's data by ID
OAuth 2.0 authentication for Europe. Use this for users based in Europe and adjacent regions.
- : OpenID Connect scope
- : Basic user profile
- : User e-mail address
Unique identifier for the asset
Asset details
Invalid request or validation error
Authentication is required
Asset not found
GET /repo/v0/asset/read?id=1 HTTP/1.1
Host: api.navixy.com
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
"id": 21,
"type_id": 12,
"label": "Aspen V6 GTX",
"fields": {
"131312": {
"type": "text",
"value": "I love text!"
}
},
"created_at": "2025-06-30T06:46:10Z"
}Updates the information of an existing asset
OAuth 2.0 authentication for Europe. Use this for users based in Europe and adjacent regions.
- : OpenID Connect scope
- : Basic user profile
- : User e-mail address
Defines the request schema for /asset/update
Unique identifier for the asset
21The asset’s title/name
Aspen V6 GTXAsset successfully updated (No Content)
Invalid request or validation error
Authentication is required
Asset not found
POST /repo/v0/asset/update HTTP/1.1
Host: api.navixy.com
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 91
{
"id": 21,
"label": "Aspen V6 GTX",
"fields": {
"131312": {
"type": "text",
"value": "I love text!"
}
}
}No content
Deletes the specified asset by its ID
OAuth 2.0 authentication for Europe. Use this for users based in Europe and adjacent regions.
- : OpenID Connect scope
- : Basic user profile
- : User e-mail address
Unique identifier for the recourse
Asset successfully deleted (No Content)
Invalid request or validation error
Authentication is required
Asset not found
POST /repo/v0/asset/delete HTTP/1.1
Host: api.navixy.com
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 8
{
"id": 1
}No content
Last updated
Was this helpful?