Retrieve contacts
documentedRetrieve contacts.
POST /v1/person/getPeopleno 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.ap3api.com/v1/person/get" \
-X POST \
-H "X-Api-Key: {{AUTOPILOTHQ_API_KEY}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{
"limit": {{$limit}},
"sort_by_field_id": "{{$sort_by_field_id}}",
"sort_order": "{{$sort_order}}",
"offset": {{$offset}},
"fields": ["{{$field_1}}", "{{$field_2}}", "{{$field_3}}"],
"filter": {
"$and": [
{
"$str::is": {
"field_id": "{{$field_1}}",
"value": "{{$email}}"
}
}
]
}
}'"}