Asset link

Collections of assets used to organize and manage equipment more efficiently. They serve as logical groupings that help structure, track, and operate assets.

get
/v0/asset_link/list

Returns all asset links 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 links

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

List links with advanced filtering

post
/v0/asset_link/list

Returns all asset links 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 links

application/json
post
/v0/asset_link/list
POST /repo/v0/asset_link/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 link

post
/v0/asset_link/create

Adds a new asset link 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_link/create

labelstringRequired

The asset link label

Example: Boston boats
asset_idsinteger · int64[]Required

The assets of this link

Responses
200

Link created successfully

application/json
post
/v0/asset_link/create
POST /repo/v0/asset_link/create HTTP/1.1
Host: api.navixy.com
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 40

{
  "label": "Boston boats",
  "asset_ids": [
    1
  ]
}
{
  "id": 123
}
get
/v0/asset_link/read

Returns an asset link'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 link

Responses
200

Link details

application/json
get
/v0/asset_link/read
GET /repo/v0/asset_link/read?id=1 HTTP/1.1
Host: api.navixy.com
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
  "id": 12,
  "label": "Boston boats",
  "asset_ids": [
    1
  ],
  "created_at": "2025-06-30T06:46:10Z"
}

Update an existing link

post
/v0/asset_link/update

Updates the information of an existing asset link

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_link/update

idinteger · int64Required

Unique identifier for the asset link

Example: 12
labelstringRequired

The asset link label

Example: Boston boats
asset_idsinteger · int64[]Optional

The assets of this link

Responses
post
/v0/asset_link/update
POST /repo/v0/asset_link/update HTTP/1.1
Host: api.navixy.com
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 48

{
  "id": 12,
  "label": "Boston boats",
  "asset_ids": [
    1
  ]
}

No content

Delete an link

post
/v0/asset_link/delete

Deletes the specified asset link 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_link/delete
POST /repo/v0/asset_link/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

Assign asset to a link

post
/v0/asset_link/set

Binds an asset to the specified asset link

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_link/set and /asset_link/remove

link_idinteger · int64Required

Unique identifier for the asset link

Example: 12
asset_idinteger · int64Required

Unique identifier for the asset

Example: 21
Responses
post
/v0/asset_link/set
POST /repo/v0/asset_link/set HTTP/1.1
Host: api.navixy.com
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 28

{
  "link_id": 12,
  "asset_id": 21
}

No content

Unassign asset from a link

post
/v0/asset_link/remove

Removes an asset from a specified asset link.

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_link/set and /asset_link/remove

link_idinteger · int64Required

Unique identifier for the asset link

Example: 12
asset_idinteger · int64Required

Unique identifier for the asset

Example: 21
Responses
post
/v0/asset_link/remove
POST /repo/v0/asset_link/remove HTTP/1.1
Host: api.navixy.com
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 28

{
  "link_id": 12,
  "asset_id": 21
}

No content

Last updated

Was this helpful?