---
title: "Get Basic Model Object Details"
method: POST
path: "/api/custom-entity/v2/models/basic-details/search"
tags: ["Model Management"]
---

# Get Basic Model Object Details

`POST /api/custom-entity/v2/models/basic-details/search`

Use this API to retrieve basic details for the specified Model object record by key terms and filters.

> 🗒 Things to Know
> 
> - This API only supports Model objects created via Object Manager.

## Query parameters

- `page` integer — Results page to be retrieved (0..N). Example- '?page=1
- `size` integer — Number of records per page (1..50). Example- '?size=20
- `sort` 'name,asc' | 'name,desc'

## Request body

- EntityQueryRequest
  - `criteria` AttributeQueryCriteria
    - `filters` AttributePredicate[] — The fields and values used to filter results.
      - `field` string, required — The field name used to filter results.
      - `operator` 'EQUAL_TO' | 'NOT_EQUAL_TO' | 'GREATER_THAN' | 'LESS_THAN' | 'BETWEEN' — The relationship that must be met between the field and value.
      - `value` string[] — The field value used to filter results. If filtering for a range of values, this would be the start of the range and should be used in conjunction with the `toValue` parameter.
      - `toValue` string[] — The field value for the end of the range. This field should be used in conjunction with the `value` parameter.
    - `fullText` string — The key terms for the search criteria.

## Response `200`

Successfully retrieved list of basic model details matching query

- PageEntityIdentifierInformation
  - `content` EntityIdentifierInformation[], required — The data of the returned objects.
    - `id` string, uuid, required — The unique identifier of the object.
    - `name` string — The name of the object.
    - `number` integer — The sequential order in which the object was created.
    - `orgGroupId` string, uuid — The unique identifier of the organization responsible for the object.
    - `entityType` BasicEntityTypeInformation, required
      - `id` string, uuid, required — The unique identifier for the entity type.
      - `name` string, required — The name of the entity type.
      - `seeded` boolean — This parameter indicates whether the entity type is seeded or custom.
      - `moduleName` string — The name of the module where the entity exists.
      - `schemaName` string — The name of the schema.
  - `totalElements` integer, required — The total number of results in the list.
  - `totalPages` integer, required — The total number of pages in the list.
  - `number` integer, required — The page number of the results.
  - `size` integer, required — The number of results per page.
  - `first` boolean, required — This flag indicates whether the current page is the first page of the list.
  - `last` boolean, required — This flag indicates whether the current page is the last page of the list.
  - `empty` boolean, required — The flag indicates whether no results exist on the page.
  - `numberOfElements` integer, required — The number of results on the current page.
  - `hasNext` boolean, required — This flag indicates whether there is a next page in the list.
  - `hasPrevious` boolean, required — This flag indicates whether there is a previous page in the list.

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `429` — Too Many Requests. For more information, see [API Rate Limits](https://developer.onetrust.com/onetrust/reference/rate-limits-overview).
- `500` — Internal Server Error

---

[API](https://skmtc.net/onetrust/apis/platform-access-management.md) · [All operations](https://skmtc.net/onetrust/apis/platform-access-management/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/onetrust/platform-access-management/versions/21de3aa0b170/schema)
