Search object representation

The search object representation and fields are described below.

search was introduced in API version V1

search has not been marked for deprecation

Usages

Description

Representation of a search and it's results when available

Example create representation

{
  "owner" : {
    "urn" : "32a90f18-aaa0-4bdc-a63e-4efd2e16c28c",
    "url" : "/n/v1/company/32a90f18-aaa0-4bdc-a63e-4efd2e16c28c"
  },
  "order" : "NAME",
  "includeScopes" : [ "ENTITY" ]
}

Example response representation

{
  "urn" : "bdef19c7-7084-4dbe-9cf6-db578d72ed7f",
  "url" : "/n/v1/search/bdef19c7-7084-4dbe-9cf6-db578d72ed7f",
  "owner" : {
    "urn" : "32a90f18-aaa0-4bdc-a63e-4efd2e16c28c",
    "url" : "/n/v1/company/32a90f18-aaa0-4bdc-a63e-4efd2e16c28c"
  },
  "createdTimestamp" : "2025-09-22T10:15:00",
  "updatedTimestamp" : "2025-09-22T10:15:00",
  "status" : "FULL_RESULT",
  "order" : "NAME",
  "items" : [ {
    "urn" : "4fdf15cf-cfa3-4b43-9e92-57dfbbc0366d",
    "url" : "/n/v1/entity/4fdf15cf-cfa3-4b43-9e92-57dfbbc0366d",
    "sortOrder" : 0,
    "type" : "ENTITY"
  } ],
  "includeScopes" : [ "ENTITY" ]
}

Fields

NameTypeDescriptionConstraints
paginationpaginationPagination details including the offset of the current page. If set use the current pagination / url to construct the request for the next page
urnString representation of a Unique Resource Name. Typically a UUID with 36 characters.The URN of the search
urlURL represented as a stringThe URL to access for results of the search
ownercompanyThe company owner of this searchRequired on create.
createdTimestampTimestamp expressed in ISO 8601 format without timezone including milliseconds. Note unless otherwise stated in UTC zone.The timestamp this search was created
updatedTimestampTimestamp expressed in ISO 8601 format without timezone including milliseconds. Note unless otherwise stated in UTC zone.The timestamp of the last update
statusString literalThe state of the search

Allowed values:

  • PENDING
  • RUNNING
  • PARTIAL_RESULT
  • FULL_RESULT
orderString literalThe requested ordering of search resultsOptional.
itemssearchitem[]The search result itemsIgnored on update.
includeScopes[]Scopes to include for the searchIgnored on update.

Allowed values:

  • ENTITY
  • ENTITY_LIST
  • GROUP
  • IDENTITY
  • PROJECT
  • TASK