<!-- נוצר אוטומטית ממקור התיעוד הקנוני של Teloring. אין לערוך קובץ זה. -->

עמוד קנוני: https://docs.teloring.com/he/api/list-object-records
עודכן לאחרונה: 2026-08-20T20:52:05.000Z

# List records across all customers

import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
import ParamsDetails from "@theme/ParamsDetails";
import RequestSchema from "@theme/RequestSchema";
import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
import Heading from "@theme/Heading";
import Translate from "@docusaurus/Translate";

<Heading
  as={"h1"}
  className={"openapi__heading"}
  children={"List records across all customers"}
>
</Heading>

<MethodEndpoint
  method={"get"}
  path={"/objects/{object_id}/records"}
  context={"endpoint"}
>
  
</MethodEndpoint>



Every record of one object type, across every customer. This is how you ask
"all deals that closed this month" without walking the customer list.

Filter on a field's value with `field.<key>=<value>`, for example
`?field.stage=Won&field.owner=agent_12`. Comparison is case-insensitive string
equality, so select lists and free-text fields behave the same way; use
`created_after` / `created_before` for date ranges.

This query is served by a Firestore collection-group index. If that index is
still building, the endpoint answers `503` with `code: index_required` rather
than returning a partial list — fall back to the per-customer endpoint in the
meantime.

<Heading
  id={"request"}
  as={"h2"}
  className={"openapi-tabs__heading"}
>
  <Translate id="theme.openapi.request.title">Request</Translate>
</Heading>

<ParamsDetails
  {...require("./list-object-records.ParamsDetails.json")}
>
  
</ParamsDetails>

<RequestSchema
  {...require("./list-object-records.RequestSchema.json")}
>
  
</RequestSchema>

<StatusCodes
  {...require("./list-object-records.StatusCodes.json")}
>
  
</StatusCodes>
