List all Assets
List all organization assets
Get all organization assets
GET https://<baseurl>/v1/organization/assets/@clientUUID/@pageNumber
URL Parameters: pageNumber (Should be greater than 0, if not given default value of 1 will be taken)
Path Parameters
Name
Type
Description
clientUUID
string
Client UUID
pageNumber
string
Page Number
Headers
Name
Type
Description
Authentication
string
Authentication token
#########################################################################
## success
#########################################################################
{
    "message": "success",
    "status": 200,
    "data": [
        {
            "assetUUID": "6962cdb5-f8dd-45d8-b0d7-54a68b084454",
            "assetName": "Office Desk",
            "tagType": "BLE",
            "tagTypeID": "ad1001410",
            "assetIdentifier": "AD401410"
        },
      ],
    "totalCount": "210",
    "totalPages": 21
}
#########################################################################
## Error:No data found
#########################################################################
{
	"message": "error",
	"status": 400,
	"description": "No data found"
}Last updated
Was this helpful?