---
title: "Get Tenant Asset Infos (getTenantAssetInfos)"
method: GET
path: "/api/tenant/assetInfos"
tags: ["asset-controller"]
---

# Get Tenant Asset Infos (getTenantAssetInfos)

`GET /api/tenant/assetInfos`

Returns a page of assets info objects owned by tenant. You can specify parameters to filter the results. The result is wrapped with PageData object that allows you to iterate over result set using pagination. See response schema for more details. Asset Info is an extension of the default Asset object that contains information about the assigned customer name. 

Available for users with 'TENANT_ADMIN' authority.

## Query parameters

- `pageSize` integer, required
- `page` integer, required
- `type` string
- `assetProfileId` string
- `textSearch` string
- `sortProperty` 'createdTime' | 'name' | 'type' | 'label' | 'customerTitle'
- `sortOrder` 'ASC' | 'DESC'

## Response `200`

OK

- PageDataAssetInfo
  - `data` AssetInfo[] — Array of the entities
    - `id` AssetId
      - `id` string, uuid, required — ID of the entity, time-based UUID v1
      - `entityType` 'ASSET', required — string
    - `createdTime` integer — Timestamp of the asset creation, in milliseconds
    - `tenantId` TenantId
      - `id` string, uuid, required — ID of the entity, time-based UUID v1
      - `entityType` 'TENANT', required — string
    - `customerId` CustomerId
      - `id` string, uuid, required — ID of the entity, time-based UUID v1
      - `entityType` 'CUSTOMER', required — string
    - `name` string, required — Unique Asset Name in scope of Tenant
    - `type` string — Asset type
    - `label` string — Label that may be used in widgets
    - `assetProfileId` AssetProfileId
      - `id` string, uuid, required — ID of the entity, time-based UUID v1
      - `entityType` 'ASSET_PROFILE', required — string
    - `version` integer
    - `customerTitle` string — Title of the Customer that owns the asset.
    - `customerIsPublic` boolean — Indicates special 'Public' Customer that is auto-generated to use the assets on public dashboards.
    - `assetProfileName` string — Name of the corresponding Asset Profile.
    - `additionalInfo` unknown
  - `totalPages` integer — Total number of available pages. Calculated based on the 'pageSize' request parameter and total number of entities that match search criteria
  - `totalElements` integer — Total number of elements in all available pages
  - `hasNext` boolean — 'false' value indicates the end of the result set

---

[API](https://skmtc.net/thingsboard/apis/thingsboard-rest-api.md) · [All operations](https://skmtc.net/thingsboard/apis/thingsboard-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/thingsboard/thingsboard-rest-api/revisions/40169ccdec5c/schema)
