List companies
Requires companies:read. Returns a cursor page. Query predicates are AND-combined; in matches any listed value. At most 10 predicates, including 3 custom predicates. Dynamic filters use filter[customFields.KEY][operator]; replace KEY with an active definition key. in/hasAny use comma-separated strings (up to 50 values). These dynamic names cannot be enumerated as fixed OpenAPI parameters. See the filtering and custom-fields guides. Fields omitted from list output may still be filtered using supported operators.
curl -X GET "https://app.inrepli.com/v1/companies?limit=50&cursor=example_string&count=null&q=example_string&sort=-createdAt&filter[id]=example_string&filter[id][in]=example_string&filter[id][isNull]=example_string&filter[ownerId]=example_string&filter[ownerId][in]=example_string&filter[ownerId][isNull]=example_string&filter[createdAt]=example_string&filter[createdAt][gt]=example_string&filter[createdAt][gte]=example_string&filter[createdAt][lt]=example_string&filter[createdAt][lte]=example_string&filter[createdAt][isNull]=example_string&filter[updatedAt]=example_string&filter[updatedAt][gt]=example_string&filter[updatedAt][gte]=example_string&filter[updatedAt][lt]=example_string&filter[updatedAt][lte]=example_string&filter[updatedAt][isNull]=example_string&filter[lastInteractionAt]=example_string&filter[lastInteractionAt][gt]=example_string&filter[lastInteractionAt][gte]=example_string&filter[lastInteractionAt][lt]=example_string&filter[lastInteractionAt][lte]=example_string&filter[lastInteractionAt][isNull]=example_string&filter[enrichmentStatus]=example_string&filter[enrichmentStatus][in]=example_string&filter[enrichmentStatus][isNull]=example_string&filter[domain]=example_string&filter[domain][in]=example_string&filter[industry]=example_string&filter[industry][in]=example_string&filter[industry][isNull]=example_string&filter[subIndustry]=example_string&filter[subIndustry][in]=example_string&filter[subIndustry][isNull]=example_string&filter[hqCountry]=USA&filter[hqCountry][in]=USA&filter[hqCountry][isNull]=USA&filter[employeeCount]=example_string&filter[employeeCount][gt]=example_string&filter[employeeCount][gte]=example_string&filter[employeeCount][lt]=example_string&filter[employeeCount][lte]=example_string&filter[employeeCount][isNull]=example_string&filter[yearFounded]=example_string&filter[yearFounded][gt]=example_string&filter[yearFounded][gte]=example_string&filter[yearFounded][lt]=example_string&filter[yearFounded][lte]=example_string&filter[yearFounded][isNull]=example_string&filter[customerFitScore]=example_string&filter[customerFitScore][gt]=example_string&filter[customerFitScore][gte]=example_string&filter[customerFitScore][lt]=example_string&filter[customerFitScore][lte]=example_string&filter[customerFitScore][isNull]=example_string&include=example_string" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_TOKEN"
import requests
import json
url = "https://app.inrepli.com/v1/companies?limit=50&cursor=example_string&count=null&q=example_string&sort=-createdAt&filter[id]=example_string&filter[id][in]=example_string&filter[id][isNull]=example_string&filter[ownerId]=example_string&filter[ownerId][in]=example_string&filter[ownerId][isNull]=example_string&filter[createdAt]=example_string&filter[createdAt][gt]=example_string&filter[createdAt][gte]=example_string&filter[createdAt][lt]=example_string&filter[createdAt][lte]=example_string&filter[createdAt][isNull]=example_string&filter[updatedAt]=example_string&filter[updatedAt][gt]=example_string&filter[updatedAt][gte]=example_string&filter[updatedAt][lt]=example_string&filter[updatedAt][lte]=example_string&filter[updatedAt][isNull]=example_string&filter[lastInteractionAt]=example_string&filter[lastInteractionAt][gt]=example_string&filter[lastInteractionAt][gte]=example_string&filter[lastInteractionAt][lt]=example_string&filter[lastInteractionAt][lte]=example_string&filter[lastInteractionAt][isNull]=example_string&filter[enrichmentStatus]=example_string&filter[enrichmentStatus][in]=example_string&filter[enrichmentStatus][isNull]=example_string&filter[domain]=example_string&filter[domain][in]=example_string&filter[industry]=example_string&filter[industry][in]=example_string&filter[industry][isNull]=example_string&filter[subIndustry]=example_string&filter[subIndustry][in]=example_string&filter[subIndustry][isNull]=example_string&filter[hqCountry]=USA&filter[hqCountry][in]=USA&filter[hqCountry][isNull]=USA&filter[employeeCount]=example_string&filter[employeeCount][gt]=example_string&filter[employeeCount][gte]=example_string&filter[employeeCount][lt]=example_string&filter[employeeCount][lte]=example_string&filter[employeeCount][isNull]=example_string&filter[yearFounded]=example_string&filter[yearFounded][gt]=example_string&filter[yearFounded][gte]=example_string&filter[yearFounded][lt]=example_string&filter[yearFounded][lte]=example_string&filter[yearFounded][isNull]=example_string&filter[customerFitScore]=example_string&filter[customerFitScore][gt]=example_string&filter[customerFitScore][gte]=example_string&filter[customerFitScore][lt]=example_string&filter[customerFitScore][lte]=example_string&filter[customerFitScore][isNull]=example_string&include=example_string"
headers = {
"Content-Type": "application/json",
"Authorization": "Bearer YOUR_API_TOKEN"
}
response = requests.get(url, headers=headers)
print(response.json())
const response = await fetch("https://app.inrepli.com/v1/companies?limit=50&cursor=example_string&count=null&q=example_string&sort=-createdAt&filter[id]=example_string&filter[id][in]=example_string&filter[id][isNull]=example_string&filter[ownerId]=example_string&filter[ownerId][in]=example_string&filter[ownerId][isNull]=example_string&filter[createdAt]=example_string&filter[createdAt][gt]=example_string&filter[createdAt][gte]=example_string&filter[createdAt][lt]=example_string&filter[createdAt][lte]=example_string&filter[createdAt][isNull]=example_string&filter[updatedAt]=example_string&filter[updatedAt][gt]=example_string&filter[updatedAt][gte]=example_string&filter[updatedAt][lt]=example_string&filter[updatedAt][lte]=example_string&filter[updatedAt][isNull]=example_string&filter[lastInteractionAt]=example_string&filter[lastInteractionAt][gt]=example_string&filter[lastInteractionAt][gte]=example_string&filter[lastInteractionAt][lt]=example_string&filter[lastInteractionAt][lte]=example_string&filter[lastInteractionAt][isNull]=example_string&filter[enrichmentStatus]=example_string&filter[enrichmentStatus][in]=example_string&filter[enrichmentStatus][isNull]=example_string&filter[domain]=example_string&filter[domain][in]=example_string&filter[industry]=example_string&filter[industry][in]=example_string&filter[industry][isNull]=example_string&filter[subIndustry]=example_string&filter[subIndustry][in]=example_string&filter[subIndustry][isNull]=example_string&filter[hqCountry]=USA&filter[hqCountry][in]=USA&filter[hqCountry][isNull]=USA&filter[employeeCount]=example_string&filter[employeeCount][gt]=example_string&filter[employeeCount][gte]=example_string&filter[employeeCount][lt]=example_string&filter[employeeCount][lte]=example_string&filter[employeeCount][isNull]=example_string&filter[yearFounded]=example_string&filter[yearFounded][gt]=example_string&filter[yearFounded][gte]=example_string&filter[yearFounded][lt]=example_string&filter[yearFounded][lte]=example_string&filter[yearFounded][isNull]=example_string&filter[customerFitScore]=example_string&filter[customerFitScore][gt]=example_string&filter[customerFitScore][gte]=example_string&filter[customerFitScore][lt]=example_string&filter[customerFitScore][lte]=example_string&filter[customerFitScore][isNull]=example_string&include=example_string", {
method: "GET",
headers: {
"Content-Type": "application/json",
"Authorization": "Bearer YOUR_API_TOKEN"
}
});
const data = await response.json();
console.log(data);
package main
import (
"fmt"
"net/http"
)
func main() {
req, err := http.NewRequest("GET", "https://app.inrepli.com/v1/companies?limit=50&cursor=example_string&count=null&q=example_string&sort=-createdAt&filter[id]=example_string&filter[id][in]=example_string&filter[id][isNull]=example_string&filter[ownerId]=example_string&filter[ownerId][in]=example_string&filter[ownerId][isNull]=example_string&filter[createdAt]=example_string&filter[createdAt][gt]=example_string&filter[createdAt][gte]=example_string&filter[createdAt][lt]=example_string&filter[createdAt][lte]=example_string&filter[createdAt][isNull]=example_string&filter[updatedAt]=example_string&filter[updatedAt][gt]=example_string&filter[updatedAt][gte]=example_string&filter[updatedAt][lt]=example_string&filter[updatedAt][lte]=example_string&filter[updatedAt][isNull]=example_string&filter[lastInteractionAt]=example_string&filter[lastInteractionAt][gt]=example_string&filter[lastInteractionAt][gte]=example_string&filter[lastInteractionAt][lt]=example_string&filter[lastInteractionAt][lte]=example_string&filter[lastInteractionAt][isNull]=example_string&filter[enrichmentStatus]=example_string&filter[enrichmentStatus][in]=example_string&filter[enrichmentStatus][isNull]=example_string&filter[domain]=example_string&filter[domain][in]=example_string&filter[industry]=example_string&filter[industry][in]=example_string&filter[industry][isNull]=example_string&filter[subIndustry]=example_string&filter[subIndustry][in]=example_string&filter[subIndustry][isNull]=example_string&filter[hqCountry]=USA&filter[hqCountry][in]=USA&filter[hqCountry][isNull]=USA&filter[employeeCount]=example_string&filter[employeeCount][gt]=example_string&filter[employeeCount][gte]=example_string&filter[employeeCount][lt]=example_string&filter[employeeCount][lte]=example_string&filter[employeeCount][isNull]=example_string&filter[yearFounded]=example_string&filter[yearFounded][gt]=example_string&filter[yearFounded][gte]=example_string&filter[yearFounded][lt]=example_string&filter[yearFounded][lte]=example_string&filter[yearFounded][isNull]=example_string&filter[customerFitScore]=example_string&filter[customerFitScore][gt]=example_string&filter[customerFitScore][gte]=example_string&filter[customerFitScore][lt]=example_string&filter[customerFitScore][lte]=example_string&filter[customerFitScore][isNull]=example_string&include=example_string", nil)
if err != nil {
panic(err)
}
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Authorization", "Bearer YOUR_API_TOKEN")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
fmt.Println("Response Status:", resp.Status)
}
require 'net/http'
require 'json'
uri = URI('https://app.inrepli.com/v1/companies?limit=50&cursor=example_string&count=null&q=example_string&sort=-createdAt&filter[id]=example_string&filter[id][in]=example_string&filter[id][isNull]=example_string&filter[ownerId]=example_string&filter[ownerId][in]=example_string&filter[ownerId][isNull]=example_string&filter[createdAt]=example_string&filter[createdAt][gt]=example_string&filter[createdAt][gte]=example_string&filter[createdAt][lt]=example_string&filter[createdAt][lte]=example_string&filter[createdAt][isNull]=example_string&filter[updatedAt]=example_string&filter[updatedAt][gt]=example_string&filter[updatedAt][gte]=example_string&filter[updatedAt][lt]=example_string&filter[updatedAt][lte]=example_string&filter[updatedAt][isNull]=example_string&filter[lastInteractionAt]=example_string&filter[lastInteractionAt][gt]=example_string&filter[lastInteractionAt][gte]=example_string&filter[lastInteractionAt][lt]=example_string&filter[lastInteractionAt][lte]=example_string&filter[lastInteractionAt][isNull]=example_string&filter[enrichmentStatus]=example_string&filter[enrichmentStatus][in]=example_string&filter[enrichmentStatus][isNull]=example_string&filter[domain]=example_string&filter[domain][in]=example_string&filter[industry]=example_string&filter[industry][in]=example_string&filter[industry][isNull]=example_string&filter[subIndustry]=example_string&filter[subIndustry][in]=example_string&filter[subIndustry][isNull]=example_string&filter[hqCountry]=USA&filter[hqCountry][in]=USA&filter[hqCountry][isNull]=USA&filter[employeeCount]=example_string&filter[employeeCount][gt]=example_string&filter[employeeCount][gte]=example_string&filter[employeeCount][lt]=example_string&filter[employeeCount][lte]=example_string&filter[employeeCount][isNull]=example_string&filter[yearFounded]=example_string&filter[yearFounded][gt]=example_string&filter[yearFounded][gte]=example_string&filter[yearFounded][lt]=example_string&filter[yearFounded][lte]=example_string&filter[yearFounded][isNull]=example_string&filter[customerFitScore]=example_string&filter[customerFitScore][gt]=example_string&filter[customerFitScore][gte]=example_string&filter[customerFitScore][lt]=example_string&filter[customerFitScore][lte]=example_string&filter[customerFitScore][isNull]=example_string&include=example_string')
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
request = Net::HTTP::Get.new(uri)
request['Content-Type'] = 'application/json'
request['Authorization'] = 'Bearer YOUR_API_TOKEN'
response = http.request(request)
puts response.body
{
"data": [
{
"id": "example-id-4",
"name": "Example company",
"registeredName": null,
"industry": null,
"subIndustry": null,
"employeeCount": 80,
"revenue": null,
"hqCountry": null,
"yearFounded": null,
"ownerId": null,
"logo": null,
"enrichmentAt": null,
"enrichmentStatus": null,
"lastMessageSentAt": null,
"lastMessageReceivedAt": null,
"lastInteractionAt": null,
"createdAt": "2026-09-09T06:34:58.415Z",
"updatedAt": "2026-09-09T06:34:58.415Z",
"customerFitScore": null,
"etag": ""2026-09-09T06:34:58.415Z"",
"websiteUrl": "https://example.com",
"customFields": {}
}
],
"nextCursor": null,
"total": 1
}
{
"error": "Bad Request",
"message": "The request contains invalid parameters or malformed data",
"code": 400,
"details": [
{
"field": "email",
"message": "Invalid email format"
}
]
}
{
"error": "Unauthorized",
"message": "Authentication required. Please provide a valid API token",
"code": 401
}
{
"error": "Forbidden",
"message": "You don't have permission to access this resource",
"code": 403
}
{
"error": "Not Found",
"message": "The requested resource was not found",
"code": 404
}
{
"error": "Too Many Requests",
"message": "Rate limit exceeded. Please try again later",
"code": 429,
"retryAfter": 3600
}
{
"error": "Internal Server Error",
"message": "An unexpected error occurred on the server",
"code": 500,
"requestId": "req_1234567890"
}
{
"error": "Service Unavailable",
"message": "The service is temporarily unavailable. Please try again later",
"code": 503
}
/companies
Target server for requests. Edit to use your own host.
Tenant API key beginning with inr_v1_.
Page size.
Opaque nextCursor from the preceding page. Preserve filters, q, sort, count and include. Bound to tenant and key scopes; not a snapshot.
Optional complete filtered count.
Optional case-insensitive substring search of basic identity text, not custom fields or notes. Whitespace is trimmed.
Comma-separated fields: createdAt, updatedAt, name, lastInteractionAt, employeeCount, customerFitScore. Prefix - for descending. Default -createdAt; at most two distinct fields. Server appends id as a tie-breaker; nullable values sort last.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Comma-separated values (1–50), sent once as a string. No repeated keys or JSON arrays.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Comma-separated values (1–50), sent once as a string. No repeated keys or JSON arrays.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Comma-separated values (1–50), sent once as a string. No repeated keys or JSON arrays.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Comma-separated values (1–50), sent once as a string. No repeated keys or JSON arrays.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Comma-separated values (1–50), sent once as a string. No repeated keys or JSON arrays.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Comma-separated values (1–50), sent once as a string. No repeated keys or JSON arrays.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Comma-separated values (1–50), sent once as a string. No repeated keys or JSON arrays.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Literal true for missing/null, false for present.
Optional owner/contactSummary require corresponding resource read access. fit/enrichment remain accepted; lists return fit score and enrichment status but never fit reason or notes.
Request Preview
Response
Response will appear here after sending the request
Authentication
Bearer token. Tenant API key beginning with inr_v1_.
Query Parameters
Page size.
Opaque nextCursor from the preceding page. Preserve filters, q, sort, count and include. Bound to tenant and key scopes; not a snapshot.
Optional case-insensitive substring search of basic identity text, not custom fields or notes. Whitespace is trimmed.
Comma-separated fields: createdAt, updatedAt, name, lastInteractionAt, employeeCount, customerFitScore. Prefix - for descending. Default -createdAt; at most two distinct fields. Server appends id as a tie-breaker; nullable values sort last.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Comma-separated values (1–50), sent once as a string. No repeated keys or JSON arrays.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Comma-separated values (1–50), sent once as a string. No repeated keys or JSON arrays.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Comma-separated values (1–50), sent once as a string. No repeated keys or JSON arrays.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Comma-separated values (1–50), sent once as a string. No repeated keys or JSON arrays.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Comma-separated values (1–50), sent once as a string. No repeated keys or JSON arrays.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Comma-separated values (1–50), sent once as a string. No repeated keys or JSON arrays.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Comma-separated values (1–50), sent once as a string. No repeated keys or JSON arrays.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Literal true for missing/null, false for present.
Optional owner/contactSummary require corresponding resource read access. fit/enrichment remain accepted; lists return fit score and enrichment status but never fit reason or notes.