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.
Asset link object
Asset link endpoints
Returns all asset links 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 links
Invalid request or validation error
Authentication is required
GET /repo/v0/asset_link/list HTTP/1.1
Host: api.navixy.com
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
"data": [],
"has_more": true
}Returns all asset links 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 links
Invalid request or validation error
Authentication is required
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
}Adds a new asset link 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_link/create
The asset link label
Boston boatsThe assets of this link
Link created successfully
Invalid request or validation error
Authentication is required
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
}Returns an asset link'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 link
Link details
Invalid request or validation error
Authentication is required
Link not found
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"
}Updates the information of an existing asset link
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_link/update
Unique identifier for the asset link
12The asset link label
Boston boatsThe assets of this link
Link successfully updated (No Content)
Invalid request or validation error
Authentication is required
Link not found
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
Deletes the specified asset link 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
Link successfully deleted (No Content)
Invalid request or validation error
Authentication is required
Link not found
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
Binds an asset to the specified asset link
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_link/set and /asset_link/remove
Unique identifier for the asset link
12Unique identifier for the asset
21Asset successfully assigned to the link (No Content)
Invalid request or validation error
Authentication is required
Specified asset link not found
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
Removes an asset from a specified asset link.
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_link/set and /asset_link/remove
Unique identifier for the asset link
12Unique identifier for the asset
21Asset successfully unassigned from the link (No Content)
Invalid request or validation error
Authentication is required
Specified asset link or assets not found
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?