List records
documentedList records for a specific object (alternative path for listing).
POST /v2/objects/records/queryRecordsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.attio.com/v2/objects/{{$object}}/records/query" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \\
-d '{"filter": {"$and": [ {"name": {"first_name": {"$eq": "{{$first_name}}"}, "last_name": {"$eq": "{{$last_name}}"}} }, {"description": {"value": {"$contains": "{{$contains_value}}"}} } ] }, "sorts": [ {"direction": "asc", "attribute": "name", "field": "last_name"} ], "limit": {{$limit}}, "offset": {{$offset}} }'