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

List assets

get
/v0/asset/list

Returns all assets available to the organization

Authorizations
OAuth2authorizationCodeRequired

OAuth 2.0 authentication for Europe. Use this for users based in Europe and adjacent regions.

Authorization URL: Token URL: Refresh URL:
Available scopes:
  • : OpenID Connect scope
  • : Basic user profile
  • : User e-mail address
Query parameters
qstringOptional

A search query string

limitinteger · int32 · max: 1000Optional

Maximum number of items to return (default: 100, max: 1000)

offsetinteger · int32Optional

The index of the first item to return (default: 0)

sortstringOptional

Sort expression. Supports one or more fields, optionally prefixed with - to indicate descending order. For example, label,-created_at

Responses
200

List of assets

application/json
get
/v0/asset/list
GET /repo/v0/asset/list HTTP/1.1
Host: api.navixy.com
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
  "data": [],
  "has_more": true
}

List assets with advanced filtering

post
/v0/asset/list

Returns all assets available to the organization with advanced filtering options

Authorizations
OAuth2authorizationCodeRequired

OAuth 2.0 authentication for Europe. Use this for users based in Europe and adjacent regions.

Authorization URL: Token URL: Refresh URL:
Available scopes:
  • : OpenID Connect scope
  • : Basic user profile
  • : User e-mail address
Body
qstringOptional

A search query string

limitinteger · int32 · max: 1000Optional

Maximum number of items to return

Default: 100
offsetinteger · int32Optional

The index of the first item to return

Default: 0
sortstringOptional

Sort expression. Supports one or more fields, optionally prefixed with - to indicate descending order. For example, label,-created_at

Responses
200

List of assets

application/json
post
/v0/asset/list
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
}

Create a new asset

post
/v0/asset/create

Adds an asset for the organization

Authorizations
OAuth2authorizationCodeRequired

OAuth 2.0 authentication for Europe. Use this for users based in Europe and adjacent regions.

Authorization URL: Token URL: Refresh URL:
Available scopes:
  • : OpenID Connect scope
  • : Basic user profile
  • : User e-mail address
Body

Defines the request schema for /asset/create

type_idinteger · int64Required

Unique identifier for the asset's type

Example: 12
labelstringRequired

The asset’s title/name

Example: Aspen V6 GTX
Responses
200

Asset created successfully

application/json
post
/v0/asset/create
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
}

Get asset by ID

get
/v0/asset/read

Returns an asset's data by ID

Authorizations
OAuth2authorizationCodeRequired

OAuth 2.0 authentication for Europe. Use this for users based in Europe and adjacent regions.

Authorization URL: Token URL: Refresh URL:
Available scopes:
  • : OpenID Connect scope
  • : Basic user profile
  • : User e-mail address
Query parameters
idinteger · int64Required

Unique identifier for the asset

Responses
200

Asset details

application/json
get
/v0/asset/read
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"
}

Update an existing asset

post
/v0/asset/update

Updates the information of an existing asset

Authorizations
OAuth2authorizationCodeRequired

OAuth 2.0 authentication for Europe. Use this for users based in Europe and adjacent regions.

Authorization URL: Token URL: Refresh URL:
Available scopes:
  • : OpenID Connect scope
  • : Basic user profile
  • : User e-mail address
Body

Defines the request schema for /asset/update

idinteger · int64Required

Unique identifier for the asset

Example: 21
labelstringRequired

The asset’s title/name

Example: Aspen V6 GTX
Responses
post
/v0/asset/update
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

Delete an asset

post
/v0/asset/delete

Deletes the specified asset by its ID

Authorizations
OAuth2authorizationCodeRequired

OAuth 2.0 authentication for Europe. Use this for users based in Europe and adjacent regions.

Authorization URL: Token URL: Refresh URL:
Available scopes:
  • : OpenID Connect scope
  • : Basic user profile
  • : User e-mail address
Body
idinteger · int64Required

Unique identifier for the recourse

Responses
post
/v0/asset/delete
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?