Retrieve assets using a query
POSThttps://demo.openremote.io/api/master/asset/query
Retrieve assets using a query
Request
Header Parameters
Authorization string
X-Forwarded-Proto string
X-Forwarded-Host string
- application/json
Body
recursiveboolean
select object
accessstring
Possible values: [PRIVATE
, PROTECTED
, PUBLIC
]
idsstring[]
names object[]
parents object[]
paths object[]
realm object
userIdsstring[]
typesstring[]
attributes object
orderBy object
limitint32
Responses
- default
default response
- application/json
- Schema
- Example (auto)
Schema
- Array [
- ]
idstring
Possible values: Value must match regular expression ^[0-9A-Za-z]{22}$
versionint64
Possible values: >= 0
createdOndate-time
namestringrequired
Possible values: non-empty
and <= 1023 characters
accessPublicReadboolean
parentIdstring
Possible values: Value must match regular expression ^[0-9A-Za-z]{22}$
realmstringrequired
Possible values: non-empty
and <= 255 characters
type string
Possible values: []
pathstring[]
attributes object
[
{
"id": "string",
"version": 0,
"createdOn": "2024-07-29T15:51:28.071Z",
"name": "string",
"accessPublicRead": true,
"parentId": "string",
"realm": "string",
"type": "string",
"path": [
"string"
],
"attributes": {
"delegate": {}
}
}
]
Authorization: oauth2
name: openidtype: oauth2flows: {
"clientCredentials": {
"tokenUrl": "/auth/realms/master/protocol/openid-connect/token",
"refreshUrl": "/auth/realms/master/protocol/openid-connect/token",
"scopes": {
"profile": "profile"
}
},
"authorizationCode": {
"authorizationUrl": "/auth/realms/master/protocol/openid-connect/auth",
"tokenUrl": "/auth/realms/master/protocol/openid-connect/token",
"refreshUrl": "/auth/realms/master/protocol/openid-connect/token",
"scopes": {
"profile": "profile"
}
}
}
- curl
- nodejs
- java
- python
- ruby
- csharp
- go
- php
- powershell
- CURL
curl -L 'https://demo.openremote.io/api/master/asset/query' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <token>' \
-d '{
"recursive": true,
"select": {
"basic": true
},
"access": "PRIVATE",
"ids": [
"string"
],
"names": [
{
"match": "EXACT",
"caseSensitive": true,
"value": "string",
"negate": true
}
],
"parents": [
{
"id": "string"
}
],
"paths": [
{
"path": [
"string"
]
}
],
"realm": {
"name": "string"
},
"userIds": [
"string"
],
"types": [
"string"
],
"attributes": {
"operator": "AND",
"items": [
{
"name": {
"match": "EXACT",
"caseSensitive": true,
"value": "string",
"negate": true
},
"negated": true,
"path": [
{}
],
"value": {
"predicateType": "string"
},
"meta": [
{
"name": {
"match": "EXACT",
"caseSensitive": true,
"value": "string",
"negate": true
},
"negated": true,
"path": [
{}
],
"value": {
"predicateType": "string"
}
}
],
"previousValue": {
"predicateType": "string"
},
"timestampOlderThan": "string"
}
],
"groups": [
null
]
},
"orderBy": {
"property": "CREATED_ON",
"descending": true
},
"limit": 0
}'
ResponseClear