Skip to content

Persons

Service for managing persons (contacts).

Uses V2 API for efficient reading with field selection, V1 API for create/update/delete operations.

Source code in affinity/services/persons.py
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
class PersonService:
    """
    Service for managing persons (contacts).

    Uses V2 API for efficient reading with field selection,
    V1 API for create/update/delete operations.
    """

    def __init__(self, client: HTTPClient):
        self._client = client

    # =========================================================================
    # Read Operations (V2 API)
    # =========================================================================

    def list(
        self,
        *,
        field_ids: Sequence[AnyFieldId] | None = None,
        field_types: Sequence[FieldType] | None = None,
        filter: str | FilterExpression | None = None,
        limit: int | None = None,
        cursor: str | None = None,
    ) -> PaginatedResponse[Person]:
        """
        Get a page of persons.

        Args:
            field_ids: Specific field IDs to include in response
            field_types: Field types to include
            filter: V2 filter expression string, or a FilterExpression built via `affinity.F`
            limit: Maximum number of results
            cursor: Cursor to resume pagination (opaque; obtained from prior responses)

        Returns:
            Paginated response with persons
        """
        if cursor is not None:
            if any(p is not None for p in (field_ids, field_types, filter, limit)):
                raise ValueError(
                    "Cannot combine 'cursor' with other parameters; cursor encodes all query "
                    "context. Start a new pagination sequence without a cursor to change "
                    "parameters."
                )
            data = self._client.get_url(cursor)
        else:
            params: dict[str, Any] = {}
            if field_ids:
                params["fieldIds"] = [str(field_id) for field_id in field_ids]
            if field_types:
                params["fieldTypes"] = [field_type.value for field_type in field_types]
            if filter is not None:
                filter_text = str(filter).strip()
                if filter_text:
                    params["filter"] = filter_text
            if limit:
                params["limit"] = limit
            data = self._client.get("/persons", params=params or None)

        return PaginatedResponse[Person](
            data=[Person.model_validate(p) for p in data.get("data", [])],
            pagination=PaginationInfo.model_validate(data.get("pagination", {})),
        )

    def pages(
        self,
        *,
        field_ids: Sequence[AnyFieldId] | None = None,
        field_types: Sequence[FieldType] | None = None,
        filter: str | FilterExpression | None = None,
        limit: int | None = None,
        cursor: str | None = None,
    ) -> Iterator[PaginatedResponse[Person]]:
        """
        Iterate person pages (not items), yielding `PaginatedResponse[Person]`.

        Useful for ETL scripts that need checkpoint/resume via `page.next_cursor`.

        Args:
            field_ids: Specific field IDs to include in response
            field_types: Field types to include
            filter: V2 filter expression string or FilterExpression
            limit: Maximum results per page
            cursor: Cursor to resume pagination

        Yields:
            PaginatedResponse[Person] for each page
        """
        other_params = (field_ids, field_types, filter, limit)
        if cursor is not None and any(p is not None for p in other_params):
            raise ValueError(
                "Cannot combine 'cursor' with other parameters; cursor encodes all query context. "
                "Start a new pagination sequence without a cursor to change parameters."
            )
        requested_cursor = cursor
        page = (
            self.list(cursor=cursor)
            if cursor is not None
            else self.list(field_ids=field_ids, field_types=field_types, filter=filter, limit=limit)
        )
        while True:
            yield page
            if not page.has_next:
                return
            next_cursor = page.next_cursor
            if next_cursor is None or next_cursor == requested_cursor:
                return
            requested_cursor = next_cursor
            page = self.list(cursor=next_cursor)

    def all(
        self,
        *,
        field_ids: Sequence[AnyFieldId] | None = None,
        field_types: Sequence[FieldType] | None = None,
        filter: str | FilterExpression | None = None,
    ) -> Iterator[Person]:
        """
        Iterate through all persons with automatic pagination.

        Args:
            field_ids: Specific field IDs to include
            field_types: Field types to include
            filter: V2 filter expression

        Yields:
            Person objects
        """

        def fetch_page(next_url: str | None) -> PaginatedResponse[Person]:
            if next_url:
                data = self._client.get_url(next_url)
                return PaginatedResponse[Person](
                    data=[Person.model_validate(p) for p in data.get("data", [])],
                    pagination=PaginationInfo.model_validate(data.get("pagination", {})),
                )
            return self.list(
                field_ids=field_ids,
                field_types=field_types,
                filter=filter,
            )

        return PageIterator(fetch_page)

    def iter(
        self,
        *,
        field_ids: Sequence[AnyFieldId] | None = None,
        field_types: Sequence[FieldType] | None = None,
        filter: str | FilterExpression | None = None,
    ) -> Iterator[Person]:
        """
        Auto-paginate all persons.

        Alias for `all()` (FR-006 public contract).
        """
        return self.all(field_ids=field_ids, field_types=field_types, filter=filter)

    def get(
        self,
        person_id: PersonId,
        *,
        field_ids: Sequence[AnyFieldId] | None = None,
        field_types: Sequence[FieldType] | None = None,
        include_field_values: bool = False,
    ) -> Person:
        """
        Get a single person by ID.

        Args:
            person_id: The person ID
            field_ids: Specific field IDs to include (V2 API)
            field_types: Field types to include (V2 API)
            include_field_values: If True, use V1 API to fetch embedded field values.
                This saves one API call when you need both person info and field values.
                Note: V1 response is ~2-3x larger than V2; consider this when fetching
                many persons. V1 may include field values for deleted fields.

        Returns:
            Person object with requested field data.
            When include_field_values=True, the Person will have a `field_values`
            attribute containing the list of FieldValue objects.
        """
        if include_field_values:
            # Use V1 API which returns field values embedded
            data = self._client.get(f"/persons/{person_id}", v1=True)

            # Extract field_values before normalization
            field_values_data = data.get("field_values", [])

            # Normalize V1 response to V2 schema
            normalized = _normalize_v1_person_response(data)
            person = Person.model_validate(normalized)

            # Attach field_values as an attribute
            # Using object.__setattr__ to bypass Pydantic's frozen/immutable if needed
            object.__setattr__(person, "field_values", field_values_data)

            return person

        # Standard V2 path
        params: dict[str, Any] = {}
        if field_ids:
            params["fieldIds"] = [str(field_id) for field_id in field_ids]
        if field_types:
            params["fieldTypes"] = [field_type.value for field_type in field_types]

        data = self._client.get(
            f"/persons/{person_id}",
            params=params or None,
        )
        return Person.model_validate(data)

    def get_list_entries(
        self,
        person_id: PersonId,
    ) -> PaginatedResponse[ListEntry]:
        """Get all list entries for a person across all lists."""
        data = self._client.get(f"/persons/{person_id}/list-entries")

        return PaginatedResponse[ListEntry](
            data=[ListEntry.model_validate(e) for e in data.get("data", [])],
            pagination=PaginationInfo.model_validate(data.get("pagination", {})),
        )

    def get_lists(
        self,
        person_id: PersonId,
    ) -> PaginatedResponse[ListSummary]:
        """Get all lists that contain this person."""
        data = self._client.get(f"/persons/{person_id}/lists")

        return PaginatedResponse[ListSummary](
            data=[ListSummary.model_validate(item) for item in data.get("data", [])],
            pagination=PaginationInfo.model_validate(data.get("pagination", {})),
        )

    def get_fields(
        self,
        *,
        field_types: Sequence[FieldType] | None = None,
    ) -> builtins.list[FieldMetadata]:
        """
        Get metadata about person fields.

        Cached for performance.
        """
        params: dict[str, Any] = {}
        if field_types:
            params["fieldTypes"] = [field_type.value for field_type in field_types]

        data = self._client.get(
            "/persons/fields",
            params=params or None,
            cache_key=f"person_fields:{','.join(field_types or [])}",
            cache_ttl=300,
        )

        return [FieldMetadata.model_validate(f) for f in data.get("data", [])]

    # =========================================================================
    # Search (V1 API)
    # =========================================================================

    def search(
        self,
        term: str,
        *,
        with_interaction_dates: bool = False,
        with_interaction_persons: bool = False,
        with_opportunities: bool = False,
        page_size: int | None = None,
        page_token: str | None = None,
    ) -> V1PaginatedResponse[Person]:
        """
        Search for persons by name or email.

        Uses V1 API for search functionality.

        Args:
            term: Search term (name or email)
            with_interaction_dates: Include interaction date data
            with_interaction_persons: Include persons for interactions
            with_opportunities: Include associated opportunity IDs
            page_size: Results per page (max 500)
            page_token: Pagination token

        Returns:
            Dict with 'persons' and 'next_page_token'
        """
        params: dict[str, Any] = {"term": term}
        if with_interaction_dates:
            params["with_interaction_dates"] = True
        if with_interaction_persons:
            params["with_interaction_persons"] = True
        if with_opportunities:
            params["with_opportunities"] = True
        if page_size:
            params["page_size"] = page_size
        if page_token:
            params["page_token"] = page_token

        data = self._client.get("/persons", params=params, v1=True)
        items = [Person.model_validate(p) for p in data.get("persons", [])]
        return V1PaginatedResponse[Person](
            data=items,
            next_page_token=data.get("next_page_token"),
        )

    def search_pages(
        self,
        term: str,
        *,
        with_interaction_dates: bool = False,
        with_interaction_persons: bool = False,
        with_opportunities: bool = False,
        page_size: int | None = None,
        page_token: str | None = None,
    ) -> Iterator[V1PaginatedResponse[Person]]:
        """
        Iterate V1 person-search result pages.

        Useful for scripts that need checkpoint/resume via `next_page_token`.

        Args:
            term: Search term (name or email)
            with_interaction_dates: Include interaction date data
            with_interaction_persons: Include persons for interactions
            with_opportunities: Include associated opportunity IDs
            page_size: Results per page (max 500)
            page_token: Resume from this pagination token

        Yields:
            V1PaginatedResponse[Person] for each page
        """
        requested_token = page_token
        page = self.search(
            term,
            with_interaction_dates=with_interaction_dates,
            with_interaction_persons=with_interaction_persons,
            with_opportunities=with_opportunities,
            page_size=page_size,
            page_token=page_token,
        )
        while True:
            yield page
            next_token = page.next_page_token
            if not next_token or next_token == requested_token:
                return
            requested_token = next_token
            page = self.search(
                term,
                with_interaction_dates=with_interaction_dates,
                with_interaction_persons=with_interaction_persons,
                with_opportunities=with_opportunities,
                page_size=page_size,
                page_token=next_token,
            )

    def search_all(
        self,
        term: str,
        *,
        with_interaction_dates: bool = False,
        with_interaction_persons: bool = False,
        with_opportunities: bool = False,
        page_size: int | None = None,
        page_token: str | None = None,
    ) -> Iterator[Person]:
        """
        Iterate all V1 person-search results with automatic pagination.

        Args:
            term: Search term (name or email)
            with_interaction_dates: Include interaction date data
            with_interaction_persons: Include persons for interactions
            with_opportunities: Include associated opportunity IDs
            page_size: Results per page (max 500)
            page_token: Resume from this pagination token

        Yields:
            Person objects matching the search term
        """
        for page in self.search_pages(
            term,
            with_interaction_dates=with_interaction_dates,
            with_interaction_persons=with_interaction_persons,
            with_opportunities=with_opportunities,
            page_size=page_size,
            page_token=page_token,
        ):
            yield from page.data

    def resolve(
        self,
        *,
        email: str | None = None,
        name: str | None = None,
    ) -> Person | None:
        """
        Find a single person by email or name.

        This is a convenience helper that searches and returns the first exact match,
        or None if not found. Uses V1 search internally.

        Args:
            email: Email address to search for
            name: Person name to search for (first + last)

        Returns:
            The matching Person, or None if not found

        Raises:
            ValueError: If neither email nor name is provided

        Note:
            This auto-paginates V1 search results until a match is found.
            If multiple matches are found, returns the first one. For full
            disambiguation, use resolve_all() or search() directly.
        """
        if not email and not name:
            raise ValueError("Must provide either email or name")

        term = email or name or ""
        for page in self.search_pages(term, page_size=10):
            for person in page.data:
                if _person_matches(person, email=email, name=name):
                    return person

        return None

    def resolve_all(
        self,
        *,
        email: str | None = None,
        name: str | None = None,
    ) -> builtins.list[Person]:
        """
        Find all persons matching an email or name.

        Notes:
        - This auto-paginates V1 search results to collect exact matches.
        - Unlike resolve(), this returns every match in server-provided order.
        """
        if not email and not name:
            raise ValueError("Must provide either email or name")

        term = email or name or ""
        matches: builtins.list[Person] = []
        for page in self.search_pages(term, page_size=10):
            for person in page.data:
                if _person_matches(person, email=email, name=name):
                    matches.append(person)
        return matches

    # =========================================================================
    # Write Operations (V1 API)
    # =========================================================================

    def create(self, data: PersonCreate) -> Person:
        """
        Create a new person.

        Raises:
            ValidationError: If email conflicts with existing person
        """
        payload = data.model_dump(by_alias=True, mode="json")
        if not data.company_ids:
            payload.pop("organization_ids", None)

        result = self._client.post("/persons", json=payload, v1=True)

        if self._client.cache:
            self._client.cache.invalidate_prefix("person")

        return Person.model_validate(result)

    def update(
        self,
        person_id: PersonId,
        data: PersonUpdate,
    ) -> Person:
        """
        Update an existing person.

        Note: To add emails/organizations, include existing values plus new ones.
        """
        payload = data.model_dump(
            by_alias=True,
            mode="json",
            exclude_unset=True,
            exclude_none=True,
        )

        result = self._client.put(
            f"/persons/{person_id}",
            json=payload,
            v1=True,
        )

        if self._client.cache:
            self._client.cache.invalidate_prefix("person")

        return Person.model_validate(result)

    def delete(self, person_id: PersonId) -> bool:
        """Delete a person (also deletes associated field values)."""
        result = self._client.delete(f"/persons/{person_id}", v1=True)

        if self._client.cache:
            self._client.cache.invalidate_prefix("person")

        return bool(result.get("success", False))

    # =========================================================================
    # Merge Operations (V2 BETA)
    # =========================================================================

    def merge(
        self,
        primary_id: PersonId,
        duplicate_id: PersonId,
    ) -> str:
        """
        Merge a duplicate person into a primary person.

        Returns a task URL to check merge status.
        """
        if not self._client.enable_beta_endpoints:
            raise BetaEndpointDisabledError(
                "Person merge is a beta endpoint; set enable_beta_endpoints=True to use it."
            )
        result = self._client.post(
            "/person-merges",
            json={
                "primaryPersonId": int(primary_id),
                "duplicatePersonId": int(duplicate_id),
            },
        )
        return str(result.get("taskUrl", ""))

    def get_merge_status(self, task_id: str) -> MergeTask:
        """Check the status of a merge operation."""
        data = self._client.get(f"/tasks/person-merges/{task_id}")
        return MergeTask.model_validate(data)

all(*, field_ids: Sequence[AnyFieldId] | None = None, field_types: Sequence[FieldType] | None = None, filter: str | FilterExpression | None = None) -> Iterator[Person]

Iterate through all persons with automatic pagination.

Parameters:

Name Type Description Default
field_ids Sequence[AnyFieldId] | None

Specific field IDs to include

None
field_types Sequence[FieldType] | None

Field types to include

None
filter str | FilterExpression | None

V2 filter expression

None

Yields:

Type Description
Person

Person objects

Source code in affinity/services/persons.py
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
def all(
    self,
    *,
    field_ids: Sequence[AnyFieldId] | None = None,
    field_types: Sequence[FieldType] | None = None,
    filter: str | FilterExpression | None = None,
) -> Iterator[Person]:
    """
    Iterate through all persons with automatic pagination.

    Args:
        field_ids: Specific field IDs to include
        field_types: Field types to include
        filter: V2 filter expression

    Yields:
        Person objects
    """

    def fetch_page(next_url: str | None) -> PaginatedResponse[Person]:
        if next_url:
            data = self._client.get_url(next_url)
            return PaginatedResponse[Person](
                data=[Person.model_validate(p) for p in data.get("data", [])],
                pagination=PaginationInfo.model_validate(data.get("pagination", {})),
            )
        return self.list(
            field_ids=field_ids,
            field_types=field_types,
            filter=filter,
        )

    return PageIterator(fetch_page)

create(data: PersonCreate) -> Person

Create a new person.

Raises:

Type Description
ValidationError

If email conflicts with existing person

Source code in affinity/services/persons.py
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
def create(self, data: PersonCreate) -> Person:
    """
    Create a new person.

    Raises:
        ValidationError: If email conflicts with existing person
    """
    payload = data.model_dump(by_alias=True, mode="json")
    if not data.company_ids:
        payload.pop("organization_ids", None)

    result = self._client.post("/persons", json=payload, v1=True)

    if self._client.cache:
        self._client.cache.invalidate_prefix("person")

    return Person.model_validate(result)

delete(person_id: PersonId) -> bool

Delete a person (also deletes associated field values).

Source code in affinity/services/persons.py
606
607
608
609
610
611
612
613
def delete(self, person_id: PersonId) -> bool:
    """Delete a person (also deletes associated field values)."""
    result = self._client.delete(f"/persons/{person_id}", v1=True)

    if self._client.cache:
        self._client.cache.invalidate_prefix("person")

    return bool(result.get("success", False))

get(person_id: PersonId, *, field_ids: Sequence[AnyFieldId] | None = None, field_types: Sequence[FieldType] | None = None, include_field_values: bool = False) -> Person

Get a single person by ID.

Parameters:

Name Type Description Default
person_id PersonId

The person ID

required
field_ids Sequence[AnyFieldId] | None

Specific field IDs to include (V2 API)

None
field_types Sequence[FieldType] | None

Field types to include (V2 API)

None
include_field_values bool

If True, use V1 API to fetch embedded field values. This saves one API call when you need both person info and field values. Note: V1 response is ~2-3x larger than V2; consider this when fetching many persons. V1 may include field values for deleted fields.

False

Returns:

Type Description
Person

Person object with requested field data.

Person

When include_field_values=True, the Person will have a field_values

Person

attribute containing the list of FieldValue objects.

Source code in affinity/services/persons.py
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
def get(
    self,
    person_id: PersonId,
    *,
    field_ids: Sequence[AnyFieldId] | None = None,
    field_types: Sequence[FieldType] | None = None,
    include_field_values: bool = False,
) -> Person:
    """
    Get a single person by ID.

    Args:
        person_id: The person ID
        field_ids: Specific field IDs to include (V2 API)
        field_types: Field types to include (V2 API)
        include_field_values: If True, use V1 API to fetch embedded field values.
            This saves one API call when you need both person info and field values.
            Note: V1 response is ~2-3x larger than V2; consider this when fetching
            many persons. V1 may include field values for deleted fields.

    Returns:
        Person object with requested field data.
        When include_field_values=True, the Person will have a `field_values`
        attribute containing the list of FieldValue objects.
    """
    if include_field_values:
        # Use V1 API which returns field values embedded
        data = self._client.get(f"/persons/{person_id}", v1=True)

        # Extract field_values before normalization
        field_values_data = data.get("field_values", [])

        # Normalize V1 response to V2 schema
        normalized = _normalize_v1_person_response(data)
        person = Person.model_validate(normalized)

        # Attach field_values as an attribute
        # Using object.__setattr__ to bypass Pydantic's frozen/immutable if needed
        object.__setattr__(person, "field_values", field_values_data)

        return person

    # Standard V2 path
    params: dict[str, Any] = {}
    if field_ids:
        params["fieldIds"] = [str(field_id) for field_id in field_ids]
    if field_types:
        params["fieldTypes"] = [field_type.value for field_type in field_types]

    data = self._client.get(
        f"/persons/{person_id}",
        params=params or None,
    )
    return Person.model_validate(data)

get_fields(*, field_types: Sequence[FieldType] | None = None) -> builtins.list[FieldMetadata]

Get metadata about person fields.

Cached for performance.

Source code in affinity/services/persons.py
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
def get_fields(
    self,
    *,
    field_types: Sequence[FieldType] | None = None,
) -> builtins.list[FieldMetadata]:
    """
    Get metadata about person fields.

    Cached for performance.
    """
    params: dict[str, Any] = {}
    if field_types:
        params["fieldTypes"] = [field_type.value for field_type in field_types]

    data = self._client.get(
        "/persons/fields",
        params=params or None,
        cache_key=f"person_fields:{','.join(field_types or [])}",
        cache_ttl=300,
    )

    return [FieldMetadata.model_validate(f) for f in data.get("data", [])]

get_list_entries(person_id: PersonId) -> PaginatedResponse[ListEntry]

Get all list entries for a person across all lists.

Source code in affinity/services/persons.py
314
315
316
317
318
319
320
321
322
323
324
def get_list_entries(
    self,
    person_id: PersonId,
) -> PaginatedResponse[ListEntry]:
    """Get all list entries for a person across all lists."""
    data = self._client.get(f"/persons/{person_id}/list-entries")

    return PaginatedResponse[ListEntry](
        data=[ListEntry.model_validate(e) for e in data.get("data", [])],
        pagination=PaginationInfo.model_validate(data.get("pagination", {})),
    )

get_lists(person_id: PersonId) -> PaginatedResponse[ListSummary]

Get all lists that contain this person.

Source code in affinity/services/persons.py
326
327
328
329
330
331
332
333
334
335
336
def get_lists(
    self,
    person_id: PersonId,
) -> PaginatedResponse[ListSummary]:
    """Get all lists that contain this person."""
    data = self._client.get(f"/persons/{person_id}/lists")

    return PaginatedResponse[ListSummary](
        data=[ListSummary.model_validate(item) for item in data.get("data", [])],
        pagination=PaginationInfo.model_validate(data.get("pagination", {})),
    )

get_merge_status(task_id: str) -> MergeTask

Check the status of a merge operation.

Source code in affinity/services/persons.py
642
643
644
645
def get_merge_status(self, task_id: str) -> MergeTask:
    """Check the status of a merge operation."""
    data = self._client.get(f"/tasks/person-merges/{task_id}")
    return MergeTask.model_validate(data)

iter(*, field_ids: Sequence[AnyFieldId] | None = None, field_types: Sequence[FieldType] | None = None, filter: str | FilterExpression | None = None) -> Iterator[Person]

Auto-paginate all persons.

Alias for all() (FR-006 public contract).

Source code in affinity/services/persons.py
245
246
247
248
249
250
251
252
253
254
255
256
257
def iter(
    self,
    *,
    field_ids: Sequence[AnyFieldId] | None = None,
    field_types: Sequence[FieldType] | None = None,
    filter: str | FilterExpression | None = None,
) -> Iterator[Person]:
    """
    Auto-paginate all persons.

    Alias for `all()` (FR-006 public contract).
    """
    return self.all(field_ids=field_ids, field_types=field_types, filter=filter)

list(*, field_ids: Sequence[AnyFieldId] | None = None, field_types: Sequence[FieldType] | None = None, filter: str | FilterExpression | None = None, limit: int | None = None, cursor: str | None = None) -> PaginatedResponse[Person]

Get a page of persons.

Parameters:

Name Type Description Default
field_ids Sequence[AnyFieldId] | None

Specific field IDs to include in response

None
field_types Sequence[FieldType] | None

Field types to include

None
filter str | FilterExpression | None

V2 filter expression string, or a FilterExpression built via affinity.F

None
limit int | None

Maximum number of results

None
cursor str | None

Cursor to resume pagination (opaque; obtained from prior responses)

None

Returns:

Type Description
PaginatedResponse[Person]

Paginated response with persons

Source code in affinity/services/persons.py
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
def list(
    self,
    *,
    field_ids: Sequence[AnyFieldId] | None = None,
    field_types: Sequence[FieldType] | None = None,
    filter: str | FilterExpression | None = None,
    limit: int | None = None,
    cursor: str | None = None,
) -> PaginatedResponse[Person]:
    """
    Get a page of persons.

    Args:
        field_ids: Specific field IDs to include in response
        field_types: Field types to include
        filter: V2 filter expression string, or a FilterExpression built via `affinity.F`
        limit: Maximum number of results
        cursor: Cursor to resume pagination (opaque; obtained from prior responses)

    Returns:
        Paginated response with persons
    """
    if cursor is not None:
        if any(p is not None for p in (field_ids, field_types, filter, limit)):
            raise ValueError(
                "Cannot combine 'cursor' with other parameters; cursor encodes all query "
                "context. Start a new pagination sequence without a cursor to change "
                "parameters."
            )
        data = self._client.get_url(cursor)
    else:
        params: dict[str, Any] = {}
        if field_ids:
            params["fieldIds"] = [str(field_id) for field_id in field_ids]
        if field_types:
            params["fieldTypes"] = [field_type.value for field_type in field_types]
        if filter is not None:
            filter_text = str(filter).strip()
            if filter_text:
                params["filter"] = filter_text
        if limit:
            params["limit"] = limit
        data = self._client.get("/persons", params=params or None)

    return PaginatedResponse[Person](
        data=[Person.model_validate(p) for p in data.get("data", [])],
        pagination=PaginationInfo.model_validate(data.get("pagination", {})),
    )

merge(primary_id: PersonId, duplicate_id: PersonId) -> str

Merge a duplicate person into a primary person.

Returns a task URL to check merge status.

Source code in affinity/services/persons.py
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
def merge(
    self,
    primary_id: PersonId,
    duplicate_id: PersonId,
) -> str:
    """
    Merge a duplicate person into a primary person.

    Returns a task URL to check merge status.
    """
    if not self._client.enable_beta_endpoints:
        raise BetaEndpointDisabledError(
            "Person merge is a beta endpoint; set enable_beta_endpoints=True to use it."
        )
    result = self._client.post(
        "/person-merges",
        json={
            "primaryPersonId": int(primary_id),
            "duplicatePersonId": int(duplicate_id),
        },
    )
    return str(result.get("taskUrl", ""))

pages(*, field_ids: Sequence[AnyFieldId] | None = None, field_types: Sequence[FieldType] | None = None, filter: str | FilterExpression | None = None, limit: int | None = None, cursor: str | None = None) -> Iterator[PaginatedResponse[Person]]

Iterate person pages (not items), yielding PaginatedResponse[Person].

Useful for ETL scripts that need checkpoint/resume via page.next_cursor.

Parameters:

Name Type Description Default
field_ids Sequence[AnyFieldId] | None

Specific field IDs to include in response

None
field_types Sequence[FieldType] | None

Field types to include

None
filter str | FilterExpression | None

V2 filter expression string or FilterExpression

None
limit int | None

Maximum results per page

None
cursor str | None

Cursor to resume pagination

None

Yields:

Type Description
PaginatedResponse[Person]

PaginatedResponse[Person] for each page

Source code in affinity/services/persons.py
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
def pages(
    self,
    *,
    field_ids: Sequence[AnyFieldId] | None = None,
    field_types: Sequence[FieldType] | None = None,
    filter: str | FilterExpression | None = None,
    limit: int | None = None,
    cursor: str | None = None,
) -> Iterator[PaginatedResponse[Person]]:
    """
    Iterate person pages (not items), yielding `PaginatedResponse[Person]`.

    Useful for ETL scripts that need checkpoint/resume via `page.next_cursor`.

    Args:
        field_ids: Specific field IDs to include in response
        field_types: Field types to include
        filter: V2 filter expression string or FilterExpression
        limit: Maximum results per page
        cursor: Cursor to resume pagination

    Yields:
        PaginatedResponse[Person] for each page
    """
    other_params = (field_ids, field_types, filter, limit)
    if cursor is not None and any(p is not None for p in other_params):
        raise ValueError(
            "Cannot combine 'cursor' with other parameters; cursor encodes all query context. "
            "Start a new pagination sequence without a cursor to change parameters."
        )
    requested_cursor = cursor
    page = (
        self.list(cursor=cursor)
        if cursor is not None
        else self.list(field_ids=field_ids, field_types=field_types, filter=filter, limit=limit)
    )
    while True:
        yield page
        if not page.has_next:
            return
        next_cursor = page.next_cursor
        if next_cursor is None or next_cursor == requested_cursor:
            return
        requested_cursor = next_cursor
        page = self.list(cursor=next_cursor)

resolve(*, email: str | None = None, name: str | None = None) -> Person | None

Find a single person by email or name.

This is a convenience helper that searches and returns the first exact match, or None if not found. Uses V1 search internally.

Parameters:

Name Type Description Default
email str | None

Email address to search for

None
name str | None

Person name to search for (first + last)

None

Returns:

Type Description
Person | None

The matching Person, or None if not found

Raises:

Type Description
ValueError

If neither email nor name is provided

Note

This auto-paginates V1 search results until a match is found. If multiple matches are found, returns the first one. For full disambiguation, use resolve_all() or search() directly.

Source code in affinity/services/persons.py
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
def resolve(
    self,
    *,
    email: str | None = None,
    name: str | None = None,
) -> Person | None:
    """
    Find a single person by email or name.

    This is a convenience helper that searches and returns the first exact match,
    or None if not found. Uses V1 search internally.

    Args:
        email: Email address to search for
        name: Person name to search for (first + last)

    Returns:
        The matching Person, or None if not found

    Raises:
        ValueError: If neither email nor name is provided

    Note:
        This auto-paginates V1 search results until a match is found.
        If multiple matches are found, returns the first one. For full
        disambiguation, use resolve_all() or search() directly.
    """
    if not email and not name:
        raise ValueError("Must provide either email or name")

    term = email or name or ""
    for page in self.search_pages(term, page_size=10):
        for person in page.data:
            if _person_matches(person, email=email, name=name):
                return person

    return None

resolve_all(*, email: str | None = None, name: str | None = None) -> builtins.list[Person]

Find all persons matching an email or name.

Notes: - This auto-paginates V1 search results to collect exact matches. - Unlike resolve(), this returns every match in server-provided order.

Source code in affinity/services/persons.py
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
def resolve_all(
    self,
    *,
    email: str | None = None,
    name: str | None = None,
) -> builtins.list[Person]:
    """
    Find all persons matching an email or name.

    Notes:
    - This auto-paginates V1 search results to collect exact matches.
    - Unlike resolve(), this returns every match in server-provided order.
    """
    if not email and not name:
        raise ValueError("Must provide either email or name")

    term = email or name or ""
    matches: builtins.list[Person] = []
    for page in self.search_pages(term, page_size=10):
        for person in page.data:
            if _person_matches(person, email=email, name=name):
                matches.append(person)
    return matches

search(term: str, *, with_interaction_dates: bool = False, with_interaction_persons: bool = False, with_opportunities: bool = False, page_size: int | None = None, page_token: str | None = None) -> V1PaginatedResponse[Person]

Search for persons by name or email.

Uses V1 API for search functionality.

Parameters:

Name Type Description Default
term str

Search term (name or email)

required
with_interaction_dates bool

Include interaction date data

False
with_interaction_persons bool

Include persons for interactions

False
with_opportunities bool

Include associated opportunity IDs

False
page_size int | None

Results per page (max 500)

None
page_token str | None

Pagination token

None

Returns:

Type Description
V1PaginatedResponse[Person]

Dict with 'persons' and 'next_page_token'

Source code in affinity/services/persons.py
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
def search(
    self,
    term: str,
    *,
    with_interaction_dates: bool = False,
    with_interaction_persons: bool = False,
    with_opportunities: bool = False,
    page_size: int | None = None,
    page_token: str | None = None,
) -> V1PaginatedResponse[Person]:
    """
    Search for persons by name or email.

    Uses V1 API for search functionality.

    Args:
        term: Search term (name or email)
        with_interaction_dates: Include interaction date data
        with_interaction_persons: Include persons for interactions
        with_opportunities: Include associated opportunity IDs
        page_size: Results per page (max 500)
        page_token: Pagination token

    Returns:
        Dict with 'persons' and 'next_page_token'
    """
    params: dict[str, Any] = {"term": term}
    if with_interaction_dates:
        params["with_interaction_dates"] = True
    if with_interaction_persons:
        params["with_interaction_persons"] = True
    if with_opportunities:
        params["with_opportunities"] = True
    if page_size:
        params["page_size"] = page_size
    if page_token:
        params["page_token"] = page_token

    data = self._client.get("/persons", params=params, v1=True)
    items = [Person.model_validate(p) for p in data.get("persons", [])]
    return V1PaginatedResponse[Person](
        data=items,
        next_page_token=data.get("next_page_token"),
    )

search_all(term: str, *, with_interaction_dates: bool = False, with_interaction_persons: bool = False, with_opportunities: bool = False, page_size: int | None = None, page_token: str | None = None) -> Iterator[Person]

Iterate all V1 person-search results with automatic pagination.

Parameters:

Name Type Description Default
term str

Search term (name or email)

required
with_interaction_dates bool

Include interaction date data

False
with_interaction_persons bool

Include persons for interactions

False
with_opportunities bool

Include associated opportunity IDs

False
page_size int | None

Results per page (max 500)

None
page_token str | None

Resume from this pagination token

None

Yields:

Type Description
Person

Person objects matching the search term

Source code in affinity/services/persons.py
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
def search_all(
    self,
    term: str,
    *,
    with_interaction_dates: bool = False,
    with_interaction_persons: bool = False,
    with_opportunities: bool = False,
    page_size: int | None = None,
    page_token: str | None = None,
) -> Iterator[Person]:
    """
    Iterate all V1 person-search results with automatic pagination.

    Args:
        term: Search term (name or email)
        with_interaction_dates: Include interaction date data
        with_interaction_persons: Include persons for interactions
        with_opportunities: Include associated opportunity IDs
        page_size: Results per page (max 500)
        page_token: Resume from this pagination token

    Yields:
        Person objects matching the search term
    """
    for page in self.search_pages(
        term,
        with_interaction_dates=with_interaction_dates,
        with_interaction_persons=with_interaction_persons,
        with_opportunities=with_opportunities,
        page_size=page_size,
        page_token=page_token,
    ):
        yield from page.data

search_pages(term: str, *, with_interaction_dates: bool = False, with_interaction_persons: bool = False, with_opportunities: bool = False, page_size: int | None = None, page_token: str | None = None) -> Iterator[V1PaginatedResponse[Person]]

Iterate V1 person-search result pages.

Useful for scripts that need checkpoint/resume via next_page_token.

Parameters:

Name Type Description Default
term str

Search term (name or email)

required
with_interaction_dates bool

Include interaction date data

False
with_interaction_persons bool

Include persons for interactions

False
with_opportunities bool

Include associated opportunity IDs

False
page_size int | None

Results per page (max 500)

None
page_token str | None

Resume from this pagination token

None

Yields:

Type Description
V1PaginatedResponse[Person]

V1PaginatedResponse[Person] for each page

Source code in affinity/services/persons.py
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
def search_pages(
    self,
    term: str,
    *,
    with_interaction_dates: bool = False,
    with_interaction_persons: bool = False,
    with_opportunities: bool = False,
    page_size: int | None = None,
    page_token: str | None = None,
) -> Iterator[V1PaginatedResponse[Person]]:
    """
    Iterate V1 person-search result pages.

    Useful for scripts that need checkpoint/resume via `next_page_token`.

    Args:
        term: Search term (name or email)
        with_interaction_dates: Include interaction date data
        with_interaction_persons: Include persons for interactions
        with_opportunities: Include associated opportunity IDs
        page_size: Results per page (max 500)
        page_token: Resume from this pagination token

    Yields:
        V1PaginatedResponse[Person] for each page
    """
    requested_token = page_token
    page = self.search(
        term,
        with_interaction_dates=with_interaction_dates,
        with_interaction_persons=with_interaction_persons,
        with_opportunities=with_opportunities,
        page_size=page_size,
        page_token=page_token,
    )
    while True:
        yield page
        next_token = page.next_page_token
        if not next_token or next_token == requested_token:
            return
        requested_token = next_token
        page = self.search(
            term,
            with_interaction_dates=with_interaction_dates,
            with_interaction_persons=with_interaction_persons,
            with_opportunities=with_opportunities,
            page_size=page_size,
            page_token=next_token,
        )

update(person_id: PersonId, data: PersonUpdate) -> Person

Update an existing person.

Note: To add emails/organizations, include existing values plus new ones.

Source code in affinity/services/persons.py
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
def update(
    self,
    person_id: PersonId,
    data: PersonUpdate,
) -> Person:
    """
    Update an existing person.

    Note: To add emails/organizations, include existing values plus new ones.
    """
    payload = data.model_dump(
        by_alias=True,
        mode="json",
        exclude_unset=True,
        exclude_none=True,
    )

    result = self._client.put(
        f"/persons/{person_id}",
        json=payload,
        v1=True,
    )

    if self._client.cache:
        self._client.cache.invalidate_prefix("person")

    return Person.model_validate(result)

Async version of PersonService.

Source code in affinity/services/persons.py
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
class AsyncPersonService:
    """Async version of PersonService."""

    def __init__(self, client: AsyncHTTPClient):
        self._client = client

    async def list(
        self,
        *,
        field_ids: Sequence[AnyFieldId] | None = None,
        field_types: Sequence[FieldType] | None = None,
        filter: str | FilterExpression | None = None,
        limit: int | None = None,
        cursor: str | None = None,
    ) -> PaginatedResponse[Person]:
        """
        Get a page of persons.

        Args:
            field_ids: Specific field IDs to include in response
            field_types: Field types to include
            filter: V2 filter expression string, or a FilterExpression built via `affinity.F`
            limit: Maximum number of results
            cursor: Cursor to resume pagination (opaque; obtained from prior responses)

        Returns:
            Paginated response with persons
        """
        if cursor is not None:
            if any(p is not None for p in (field_ids, field_types, filter, limit)):
                raise ValueError(
                    "Cannot combine 'cursor' with other parameters; cursor encodes all query "
                    "context. Start a new pagination sequence without a cursor to change "
                    "parameters."
                )
            data = await self._client.get_url(cursor)
        else:
            params: dict[str, Any] = {}
            if field_ids:
                params["fieldIds"] = [str(field_id) for field_id in field_ids]
            if field_types:
                params["fieldTypes"] = [field_type.value for field_type in field_types]
            if filter is not None:
                filter_text = str(filter).strip()
                if filter_text:
                    params["filter"] = filter_text
            if limit:
                params["limit"] = limit
            data = await self._client.get("/persons", params=params or None)

        return PaginatedResponse[Person](
            data=[Person.model_validate(p) for p in data.get("data", [])],
            pagination=PaginationInfo.model_validate(data.get("pagination", {})),
        )

    async def pages(
        self,
        *,
        field_ids: Sequence[AnyFieldId] | None = None,
        field_types: Sequence[FieldType] | None = None,
        filter: str | FilterExpression | None = None,
        limit: int | None = None,
        cursor: str | None = None,
    ) -> AsyncIterator[PaginatedResponse[Person]]:
        """
        Iterate person pages (not items), yielding `PaginatedResponse[Person]`.

        Useful for ETL scripts that need checkpoint/resume via `page.next_cursor`.

        Args:
            field_ids: Specific field IDs to include in response
            field_types: Field types to include
            filter: V2 filter expression string or FilterExpression
            limit: Maximum results per page
            cursor: Cursor to resume pagination

        Yields:
            PaginatedResponse[Person] for each page
        """
        other_params = (field_ids, field_types, filter, limit)
        if cursor is not None and any(p is not None for p in other_params):
            raise ValueError(
                "Cannot combine 'cursor' with other parameters; cursor encodes all query context. "
                "Start a new pagination sequence without a cursor to change parameters."
            )
        requested_cursor = cursor
        if cursor is not None:
            page = await self.list(cursor=cursor)
        else:
            page = await self.list(
                field_ids=field_ids,
                field_types=field_types,
                filter=filter,
                limit=limit,
            )
        while True:
            yield page
            if not page.has_next:
                return
            next_cursor = page.next_cursor
            if next_cursor is None or next_cursor == requested_cursor:
                return
            requested_cursor = next_cursor
            page = await self.list(cursor=next_cursor)

    def all(
        self,
        *,
        field_ids: Sequence[AnyFieldId] | None = None,
        field_types: Sequence[FieldType] | None = None,
        filter: str | FilterExpression | None = None,
    ) -> AsyncIterator[Person]:
        """
        Iterate through all persons with automatic pagination.

        Args:
            field_ids: Specific field IDs to include
            field_types: Field types to include
            filter: V2 filter expression

        Yields:
            Person objects
        """

        async def fetch_page(next_url: str | None) -> PaginatedResponse[Person]:
            if next_url:
                data = await self._client.get_url(next_url)
                return PaginatedResponse[Person](
                    data=[Person.model_validate(p) for p in data.get("data", [])],
                    pagination=PaginationInfo.model_validate(data.get("pagination", {})),
                )
            return await self.list(field_ids=field_ids, field_types=field_types, filter=filter)

        return AsyncPageIterator(fetch_page)

    def iter(
        self,
        *,
        field_ids: Sequence[AnyFieldId] | None = None,
        field_types: Sequence[FieldType] | None = None,
        filter: str | FilterExpression | None = None,
    ) -> AsyncIterator[Person]:
        """
        Auto-paginate all persons.

        Alias for `all()` (FR-006 public contract).
        """
        return self.all(field_ids=field_ids, field_types=field_types, filter=filter)

    async def get(
        self,
        person_id: PersonId,
        *,
        field_ids: Sequence[AnyFieldId] | None = None,
        field_types: Sequence[FieldType] | None = None,
        include_field_values: bool = False,
    ) -> Person:
        """
        Get a single person by ID.

        Args:
            person_id: The person ID
            field_ids: Specific field IDs to include (V2 API)
            field_types: Field types to include (V2 API)
            include_field_values: If True, use V1 API to fetch embedded field values.
                This saves one API call when you need both person info and field values.
                Note: V1 response is ~2-3x larger than V2; consider this when fetching
                many persons. V1 may include field values for deleted fields.

        Returns:
            Person object with requested field data.
            When include_field_values=True, the Person will have a `field_values`
            attribute containing the list of FieldValue objects.
        """
        if include_field_values:
            # Use V1 API which returns field values embedded
            data = await self._client.get(f"/persons/{person_id}", v1=True)

            # Extract field_values before normalization
            field_values_data = data.get("field_values", [])

            # Normalize V1 response to V2 schema
            normalized = _normalize_v1_person_response(data)
            person = Person.model_validate(normalized)

            # Attach field_values as an attribute
            object.__setattr__(person, "field_values", field_values_data)

            return person

        # Standard V2 path
        params: dict[str, Any] = {}
        if field_ids:
            params["fieldIds"] = [str(field_id) for field_id in field_ids]
        if field_types:
            params["fieldTypes"] = [field_type.value for field_type in field_types]

        data = await self._client.get(f"/persons/{person_id}", params=params or None)
        return Person.model_validate(data)

    async def get_list_entries(
        self,
        person_id: PersonId,
    ) -> PaginatedResponse[ListEntry]:
        """Get all list entries for a person across all lists."""
        data = await self._client.get(f"/persons/{person_id}/list-entries")

        return PaginatedResponse[ListEntry](
            data=[ListEntry.model_validate(e) for e in data.get("data", [])],
            pagination=PaginationInfo.model_validate(data.get("pagination", {})),
        )

    async def get_lists(
        self,
        person_id: PersonId,
    ) -> PaginatedResponse[ListSummary]:
        """Get all lists that contain this person."""
        data = await self._client.get(f"/persons/{person_id}/lists")

        return PaginatedResponse[ListSummary](
            data=[ListSummary.model_validate(item) for item in data.get("data", [])],
            pagination=PaginationInfo.model_validate(data.get("pagination", {})),
        )

    async def get_fields(
        self,
        *,
        field_types: Sequence[FieldType] | None = None,
    ) -> builtins.list[FieldMetadata]:
        """
        Get metadata about person fields.

        Cached for performance.
        """
        params: dict[str, Any] = {}
        if field_types:
            params["fieldTypes"] = [field_type.value for field_type in field_types]

        data = await self._client.get(
            "/persons/fields",
            params=params or None,
            cache_key=f"person_fields:{','.join(field_types or [])}",
            cache_ttl=300,
        )

        return [FieldMetadata.model_validate(f) for f in data.get("data", [])]

    # =========================================================================
    # Search (V1 API)
    # =========================================================================

    async def search(
        self,
        term: str,
        *,
        with_interaction_dates: bool = False,
        with_interaction_persons: bool = False,
        with_opportunities: bool = False,
        page_size: int | None = None,
        page_token: str | None = None,
    ) -> V1PaginatedResponse[Person]:
        """
        Search for persons by name or email.

        Uses V1 API for search functionality.
        """
        params: dict[str, Any] = {"term": term}
        if with_interaction_dates:
            params["with_interaction_dates"] = True
        if with_interaction_persons:
            params["with_interaction_persons"] = True
        if with_opportunities:
            params["with_opportunities"] = True
        if page_size:
            params["page_size"] = page_size
        if page_token:
            params["page_token"] = page_token

        data = await self._client.get("/persons", params=params, v1=True)
        items = [Person.model_validate(p) for p in data.get("persons", [])]
        return V1PaginatedResponse[Person](
            data=items,
            next_page_token=data.get("next_page_token"),
        )

    async def search_pages(
        self,
        term: str,
        *,
        with_interaction_dates: bool = False,
        with_interaction_persons: bool = False,
        with_opportunities: bool = False,
        page_size: int | None = None,
        page_token: str | None = None,
    ) -> AsyncIterator[V1PaginatedResponse[Person]]:
        """
        Iterate V1 person-search result pages.

        Useful for scripts that need checkpoint/resume via `next_page_token`.

        Args:
            term: Search term (name or email)
            with_interaction_dates: Include interaction date data
            with_interaction_persons: Include persons for interactions
            with_opportunities: Include associated opportunity IDs
            page_size: Results per page (max 500)
            page_token: Resume from this pagination token

        Yields:
            V1PaginatedResponse[Person] for each page
        """
        requested_token = page_token
        page = await self.search(
            term,
            with_interaction_dates=with_interaction_dates,
            with_interaction_persons=with_interaction_persons,
            with_opportunities=with_opportunities,
            page_size=page_size,
            page_token=page_token,
        )
        while True:
            yield page
            next_token = page.next_page_token
            if not next_token or next_token == requested_token:
                return
            requested_token = next_token
            page = await self.search(
                term,
                with_interaction_dates=with_interaction_dates,
                with_interaction_persons=with_interaction_persons,
                with_opportunities=with_opportunities,
                page_size=page_size,
                page_token=next_token,
            )

    async def search_all(
        self,
        term: str,
        *,
        with_interaction_dates: bool = False,
        with_interaction_persons: bool = False,
        with_opportunities: bool = False,
        page_size: int | None = None,
        page_token: str | None = None,
    ) -> AsyncIterator[Person]:
        """
        Iterate all V1 person-search results with automatic pagination.

        Args:
            term: Search term (name or email)
            with_interaction_dates: Include interaction date data
            with_interaction_persons: Include persons for interactions
            with_opportunities: Include associated opportunity IDs
            page_size: Results per page (max 500)
            page_token: Resume from this pagination token

        Yields:
            Person objects matching the search term
        """
        async for page in self.search_pages(
            term,
            with_interaction_dates=with_interaction_dates,
            with_interaction_persons=with_interaction_persons,
            with_opportunities=with_opportunities,
            page_size=page_size,
            page_token=page_token,
        ):
            for person in page.data:
                yield person

    async def resolve(
        self,
        *,
        email: str | None = None,
        name: str | None = None,
    ) -> Person | None:
        """
        Find a single person by email or name.

        This is a convenience helper that searches and returns the first exact match,
        or None if not found. Uses V1 search internally.
        """
        if not email and not name:
            raise ValueError("Must provide either email or name")

        term = email or name or ""
        async for page in self.search_pages(term, page_size=10):
            for person in page.data:
                if _person_matches(person, email=email, name=name):
                    return person

        return None

    async def resolve_all(
        self,
        *,
        email: str | None = None,
        name: str | None = None,
    ) -> builtins.list[Person]:
        """
        Find all persons matching an email or name.

        Notes:
        - This auto-paginates V1 search results to collect exact matches.
        - Unlike resolve(), this returns every match in server-provided order.
        """
        if not email and not name:
            raise ValueError("Must provide either email or name")

        term = email or name or ""
        matches: builtins.list[Person] = []
        async for page in self.search_pages(term, page_size=10):
            for person in page.data:
                if _person_matches(person, email=email, name=name):
                    matches.append(person)
        return matches

    # =========================================================================
    # Write Operations (V1 API)
    # =========================================================================

    async def create(self, data: PersonCreate) -> Person:
        """
        Create a new person.

        Raises:
            ValidationError: If email conflicts with existing person
        """
        payload = data.model_dump(by_alias=True, mode="json")
        if not data.company_ids:
            payload.pop("organization_ids", None)

        result = await self._client.post("/persons", json=payload, v1=True)

        if self._client.cache:
            self._client.cache.invalidate_prefix("person")

        return Person.model_validate(result)

    async def update(
        self,
        person_id: PersonId,
        data: PersonUpdate,
    ) -> Person:
        """
        Update an existing person.

        Note: To add emails/organizations, include existing values plus new ones.
        """
        payload = data.model_dump(
            by_alias=True,
            mode="json",
            exclude_unset=True,
            exclude_none=True,
        )

        result = await self._client.put(
            f"/persons/{person_id}",
            json=payload,
            v1=True,
        )

        if self._client.cache:
            self._client.cache.invalidate_prefix("person")

        return Person.model_validate(result)

    async def delete(self, person_id: PersonId) -> bool:
        """Delete a person (also deletes associated field values)."""
        result = await self._client.delete(f"/persons/{person_id}", v1=True)

        if self._client.cache:
            self._client.cache.invalidate_prefix("person")

        return bool(result.get("success", False))

    # =========================================================================
    # Merge Operations (V2 BETA)
    # =========================================================================

    async def merge(
        self,
        primary_id: PersonId,
        duplicate_id: PersonId,
    ) -> str:
        """
        Merge a duplicate person into a primary person.

        Returns a task URL to check merge status.
        """
        if not self._client.enable_beta_endpoints:
            raise BetaEndpointDisabledError(
                "Person merge is a beta endpoint; set enable_beta_endpoints=True to use it."
            )
        result = await self._client.post(
            "/person-merges",
            json={
                "primaryPersonId": int(primary_id),
                "duplicatePersonId": int(duplicate_id),
            },
        )
        return str(result.get("taskUrl", ""))

    async def get_merge_status(self, task_id: str) -> MergeTask:
        """Check the status of a merge operation."""
        data = await self._client.get(f"/tasks/person-merges/{task_id}")
        return MergeTask.model_validate(data)

all(*, field_ids: Sequence[AnyFieldId] | None = None, field_types: Sequence[FieldType] | None = None, filter: str | FilterExpression | None = None) -> AsyncIterator[Person]

Iterate through all persons with automatic pagination.

Parameters:

Name Type Description Default
field_ids Sequence[AnyFieldId] | None

Specific field IDs to include

None
field_types Sequence[FieldType] | None

Field types to include

None
filter str | FilterExpression | None

V2 filter expression

None

Yields:

Type Description
AsyncIterator[Person]

Person objects

Source code in affinity/services/persons.py
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
def all(
    self,
    *,
    field_ids: Sequence[AnyFieldId] | None = None,
    field_types: Sequence[FieldType] | None = None,
    filter: str | FilterExpression | None = None,
) -> AsyncIterator[Person]:
    """
    Iterate through all persons with automatic pagination.

    Args:
        field_ids: Specific field IDs to include
        field_types: Field types to include
        filter: V2 filter expression

    Yields:
        Person objects
    """

    async def fetch_page(next_url: str | None) -> PaginatedResponse[Person]:
        if next_url:
            data = await self._client.get_url(next_url)
            return PaginatedResponse[Person](
                data=[Person.model_validate(p) for p in data.get("data", [])],
                pagination=PaginationInfo.model_validate(data.get("pagination", {})),
            )
        return await self.list(field_ids=field_ids, field_types=field_types, filter=filter)

    return AsyncPageIterator(fetch_page)

create(data: PersonCreate) -> Person async

Create a new person.

Raises:

Type Description
ValidationError

If email conflicts with existing person

Source code in affinity/services/persons.py
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
async def create(self, data: PersonCreate) -> Person:
    """
    Create a new person.

    Raises:
        ValidationError: If email conflicts with existing person
    """
    payload = data.model_dump(by_alias=True, mode="json")
    if not data.company_ids:
        payload.pop("organization_ids", None)

    result = await self._client.post("/persons", json=payload, v1=True)

    if self._client.cache:
        self._client.cache.invalidate_prefix("person")

    return Person.model_validate(result)

delete(person_id: PersonId) -> bool async

Delete a person (also deletes associated field values).

Source code in affinity/services/persons.py
1115
1116
1117
1118
1119
1120
1121
1122
async def delete(self, person_id: PersonId) -> bool:
    """Delete a person (also deletes associated field values)."""
    result = await self._client.delete(f"/persons/{person_id}", v1=True)

    if self._client.cache:
        self._client.cache.invalidate_prefix("person")

    return bool(result.get("success", False))

get(person_id: PersonId, *, field_ids: Sequence[AnyFieldId] | None = None, field_types: Sequence[FieldType] | None = None, include_field_values: bool = False) -> Person async

Get a single person by ID.

Parameters:

Name Type Description Default
person_id PersonId

The person ID

required
field_ids Sequence[AnyFieldId] | None

Specific field IDs to include (V2 API)

None
field_types Sequence[FieldType] | None

Field types to include (V2 API)

None
include_field_values bool

If True, use V1 API to fetch embedded field values. This saves one API call when you need both person info and field values. Note: V1 response is ~2-3x larger than V2; consider this when fetching many persons. V1 may include field values for deleted fields.

False

Returns:

Type Description
Person

Person object with requested field data.

Person

When include_field_values=True, the Person will have a field_values

Person

attribute containing the list of FieldValue objects.

Source code in affinity/services/persons.py
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
async def get(
    self,
    person_id: PersonId,
    *,
    field_ids: Sequence[AnyFieldId] | None = None,
    field_types: Sequence[FieldType] | None = None,
    include_field_values: bool = False,
) -> Person:
    """
    Get a single person by ID.

    Args:
        person_id: The person ID
        field_ids: Specific field IDs to include (V2 API)
        field_types: Field types to include (V2 API)
        include_field_values: If True, use V1 API to fetch embedded field values.
            This saves one API call when you need both person info and field values.
            Note: V1 response is ~2-3x larger than V2; consider this when fetching
            many persons. V1 may include field values for deleted fields.

    Returns:
        Person object with requested field data.
        When include_field_values=True, the Person will have a `field_values`
        attribute containing the list of FieldValue objects.
    """
    if include_field_values:
        # Use V1 API which returns field values embedded
        data = await self._client.get(f"/persons/{person_id}", v1=True)

        # Extract field_values before normalization
        field_values_data = data.get("field_values", [])

        # Normalize V1 response to V2 schema
        normalized = _normalize_v1_person_response(data)
        person = Person.model_validate(normalized)

        # Attach field_values as an attribute
        object.__setattr__(person, "field_values", field_values_data)

        return person

    # Standard V2 path
    params: dict[str, Any] = {}
    if field_ids:
        params["fieldIds"] = [str(field_id) for field_id in field_ids]
    if field_types:
        params["fieldTypes"] = [field_type.value for field_type in field_types]

    data = await self._client.get(f"/persons/{person_id}", params=params or None)
    return Person.model_validate(data)

get_fields(*, field_types: Sequence[FieldType] | None = None) -> builtins.list[FieldMetadata] async

Get metadata about person fields.

Cached for performance.

Source code in affinity/services/persons.py
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
async def get_fields(
    self,
    *,
    field_types: Sequence[FieldType] | None = None,
) -> builtins.list[FieldMetadata]:
    """
    Get metadata about person fields.

    Cached for performance.
    """
    params: dict[str, Any] = {}
    if field_types:
        params["fieldTypes"] = [field_type.value for field_type in field_types]

    data = await self._client.get(
        "/persons/fields",
        params=params or None,
        cache_key=f"person_fields:{','.join(field_types or [])}",
        cache_ttl=300,
    )

    return [FieldMetadata.model_validate(f) for f in data.get("data", [])]

get_list_entries(person_id: PersonId) -> PaginatedResponse[ListEntry] async

Get all list entries for a person across all lists.

Source code in affinity/services/persons.py
848
849
850
851
852
853
854
855
856
857
858
async def get_list_entries(
    self,
    person_id: PersonId,
) -> PaginatedResponse[ListEntry]:
    """Get all list entries for a person across all lists."""
    data = await self._client.get(f"/persons/{person_id}/list-entries")

    return PaginatedResponse[ListEntry](
        data=[ListEntry.model_validate(e) for e in data.get("data", [])],
        pagination=PaginationInfo.model_validate(data.get("pagination", {})),
    )

get_lists(person_id: PersonId) -> PaginatedResponse[ListSummary] async

Get all lists that contain this person.

Source code in affinity/services/persons.py
860
861
862
863
864
865
866
867
868
869
870
async def get_lists(
    self,
    person_id: PersonId,
) -> PaginatedResponse[ListSummary]:
    """Get all lists that contain this person."""
    data = await self._client.get(f"/persons/{person_id}/lists")

    return PaginatedResponse[ListSummary](
        data=[ListSummary.model_validate(item) for item in data.get("data", [])],
        pagination=PaginationInfo.model_validate(data.get("pagination", {})),
    )

get_merge_status(task_id: str) -> MergeTask async

Check the status of a merge operation.

Source code in affinity/services/persons.py
1151
1152
1153
1154
async def get_merge_status(self, task_id: str) -> MergeTask:
    """Check the status of a merge operation."""
    data = await self._client.get(f"/tasks/person-merges/{task_id}")
    return MergeTask.model_validate(data)

iter(*, field_ids: Sequence[AnyFieldId] | None = None, field_types: Sequence[FieldType] | None = None, filter: str | FilterExpression | None = None) -> AsyncIterator[Person]

Auto-paginate all persons.

Alias for all() (FR-006 public contract).

Source code in affinity/services/persons.py
783
784
785
786
787
788
789
790
791
792
793
794
795
def iter(
    self,
    *,
    field_ids: Sequence[AnyFieldId] | None = None,
    field_types: Sequence[FieldType] | None = None,
    filter: str | FilterExpression | None = None,
) -> AsyncIterator[Person]:
    """
    Auto-paginate all persons.

    Alias for `all()` (FR-006 public contract).
    """
    return self.all(field_ids=field_ids, field_types=field_types, filter=filter)

list(*, field_ids: Sequence[AnyFieldId] | None = None, field_types: Sequence[FieldType] | None = None, filter: str | FilterExpression | None = None, limit: int | None = None, cursor: str | None = None) -> PaginatedResponse[Person] async

Get a page of persons.

Parameters:

Name Type Description Default
field_ids Sequence[AnyFieldId] | None

Specific field IDs to include in response

None
field_types Sequence[FieldType] | None

Field types to include

None
filter str | FilterExpression | None

V2 filter expression string, or a FilterExpression built via affinity.F

None
limit int | None

Maximum number of results

None
cursor str | None

Cursor to resume pagination (opaque; obtained from prior responses)

None

Returns:

Type Description
PaginatedResponse[Person]

Paginated response with persons

Source code in affinity/services/persons.py
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
async def list(
    self,
    *,
    field_ids: Sequence[AnyFieldId] | None = None,
    field_types: Sequence[FieldType] | None = None,
    filter: str | FilterExpression | None = None,
    limit: int | None = None,
    cursor: str | None = None,
) -> PaginatedResponse[Person]:
    """
    Get a page of persons.

    Args:
        field_ids: Specific field IDs to include in response
        field_types: Field types to include
        filter: V2 filter expression string, or a FilterExpression built via `affinity.F`
        limit: Maximum number of results
        cursor: Cursor to resume pagination (opaque; obtained from prior responses)

    Returns:
        Paginated response with persons
    """
    if cursor is not None:
        if any(p is not None for p in (field_ids, field_types, filter, limit)):
            raise ValueError(
                "Cannot combine 'cursor' with other parameters; cursor encodes all query "
                "context. Start a new pagination sequence without a cursor to change "
                "parameters."
            )
        data = await self._client.get_url(cursor)
    else:
        params: dict[str, Any] = {}
        if field_ids:
            params["fieldIds"] = [str(field_id) for field_id in field_ids]
        if field_types:
            params["fieldTypes"] = [field_type.value for field_type in field_types]
        if filter is not None:
            filter_text = str(filter).strip()
            if filter_text:
                params["filter"] = filter_text
        if limit:
            params["limit"] = limit
        data = await self._client.get("/persons", params=params or None)

    return PaginatedResponse[Person](
        data=[Person.model_validate(p) for p in data.get("data", [])],
        pagination=PaginationInfo.model_validate(data.get("pagination", {})),
    )

merge(primary_id: PersonId, duplicate_id: PersonId) -> str async

Merge a duplicate person into a primary person.

Returns a task URL to check merge status.

Source code in affinity/services/persons.py
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
async def merge(
    self,
    primary_id: PersonId,
    duplicate_id: PersonId,
) -> str:
    """
    Merge a duplicate person into a primary person.

    Returns a task URL to check merge status.
    """
    if not self._client.enable_beta_endpoints:
        raise BetaEndpointDisabledError(
            "Person merge is a beta endpoint; set enable_beta_endpoints=True to use it."
        )
    result = await self._client.post(
        "/person-merges",
        json={
            "primaryPersonId": int(primary_id),
            "duplicatePersonId": int(duplicate_id),
        },
    )
    return str(result.get("taskUrl", ""))

pages(*, field_ids: Sequence[AnyFieldId] | None = None, field_types: Sequence[FieldType] | None = None, filter: str | FilterExpression | None = None, limit: int | None = None, cursor: str | None = None) -> AsyncIterator[PaginatedResponse[Person]] async

Iterate person pages (not items), yielding PaginatedResponse[Person].

Useful for ETL scripts that need checkpoint/resume via page.next_cursor.

Parameters:

Name Type Description Default
field_ids Sequence[AnyFieldId] | None

Specific field IDs to include in response

None
field_types Sequence[FieldType] | None

Field types to include

None
filter str | FilterExpression | None

V2 filter expression string or FilterExpression

None
limit int | None

Maximum results per page

None
cursor str | None

Cursor to resume pagination

None

Yields:

Type Description
AsyncIterator[PaginatedResponse[Person]]

PaginatedResponse[Person] for each page

Source code in affinity/services/persons.py
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
async def pages(
    self,
    *,
    field_ids: Sequence[AnyFieldId] | None = None,
    field_types: Sequence[FieldType] | None = None,
    filter: str | FilterExpression | None = None,
    limit: int | None = None,
    cursor: str | None = None,
) -> AsyncIterator[PaginatedResponse[Person]]:
    """
    Iterate person pages (not items), yielding `PaginatedResponse[Person]`.

    Useful for ETL scripts that need checkpoint/resume via `page.next_cursor`.

    Args:
        field_ids: Specific field IDs to include in response
        field_types: Field types to include
        filter: V2 filter expression string or FilterExpression
        limit: Maximum results per page
        cursor: Cursor to resume pagination

    Yields:
        PaginatedResponse[Person] for each page
    """
    other_params = (field_ids, field_types, filter, limit)
    if cursor is not None and any(p is not None for p in other_params):
        raise ValueError(
            "Cannot combine 'cursor' with other parameters; cursor encodes all query context. "
            "Start a new pagination sequence without a cursor to change parameters."
        )
    requested_cursor = cursor
    if cursor is not None:
        page = await self.list(cursor=cursor)
    else:
        page = await self.list(
            field_ids=field_ids,
            field_types=field_types,
            filter=filter,
            limit=limit,
        )
    while True:
        yield page
        if not page.has_next:
            return
        next_cursor = page.next_cursor
        if next_cursor is None or next_cursor == requested_cursor:
            return
        requested_cursor = next_cursor
        page = await self.list(cursor=next_cursor)

resolve(*, email: str | None = None, name: str | None = None) -> Person | None async

Find a single person by email or name.

This is a convenience helper that searches and returns the first exact match, or None if not found. Uses V1 search internally.

Source code in affinity/services/persons.py
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
async def resolve(
    self,
    *,
    email: str | None = None,
    name: str | None = None,
) -> Person | None:
    """
    Find a single person by email or name.

    This is a convenience helper that searches and returns the first exact match,
    or None if not found. Uses V1 search internally.
    """
    if not email and not name:
        raise ValueError("Must provide either email or name")

    term = email or name or ""
    async for page in self.search_pages(term, page_size=10):
        for person in page.data:
            if _person_matches(person, email=email, name=name):
                return person

    return None

resolve_all(*, email: str | None = None, name: str | None = None) -> builtins.list[Person] async

Find all persons matching an email or name.

Notes: - This auto-paginates V1 search results to collect exact matches. - Unlike resolve(), this returns every match in server-provided order.

Source code in affinity/services/persons.py
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
async def resolve_all(
    self,
    *,
    email: str | None = None,
    name: str | None = None,
) -> builtins.list[Person]:
    """
    Find all persons matching an email or name.

    Notes:
    - This auto-paginates V1 search results to collect exact matches.
    - Unlike resolve(), this returns every match in server-provided order.
    """
    if not email and not name:
        raise ValueError("Must provide either email or name")

    term = email or name or ""
    matches: builtins.list[Person] = []
    async for page in self.search_pages(term, page_size=10):
        for person in page.data:
            if _person_matches(person, email=email, name=name):
                matches.append(person)
    return matches

search(term: str, *, with_interaction_dates: bool = False, with_interaction_persons: bool = False, with_opportunities: bool = False, page_size: int | None = None, page_token: str | None = None) -> V1PaginatedResponse[Person] async

Search for persons by name or email.

Uses V1 API for search functionality.

Source code in affinity/services/persons.py
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
async def search(
    self,
    term: str,
    *,
    with_interaction_dates: bool = False,
    with_interaction_persons: bool = False,
    with_opportunities: bool = False,
    page_size: int | None = None,
    page_token: str | None = None,
) -> V1PaginatedResponse[Person]:
    """
    Search for persons by name or email.

    Uses V1 API for search functionality.
    """
    params: dict[str, Any] = {"term": term}
    if with_interaction_dates:
        params["with_interaction_dates"] = True
    if with_interaction_persons:
        params["with_interaction_persons"] = True
    if with_opportunities:
        params["with_opportunities"] = True
    if page_size:
        params["page_size"] = page_size
    if page_token:
        params["page_token"] = page_token

    data = await self._client.get("/persons", params=params, v1=True)
    items = [Person.model_validate(p) for p in data.get("persons", [])]
    return V1PaginatedResponse[Person](
        data=items,
        next_page_token=data.get("next_page_token"),
    )

search_all(term: str, *, with_interaction_dates: bool = False, with_interaction_persons: bool = False, with_opportunities: bool = False, page_size: int | None = None, page_token: str | None = None) -> AsyncIterator[Person] async

Iterate all V1 person-search results with automatic pagination.

Parameters:

Name Type Description Default
term str

Search term (name or email)

required
with_interaction_dates bool

Include interaction date data

False
with_interaction_persons bool

Include persons for interactions

False
with_opportunities bool

Include associated opportunity IDs

False
page_size int | None

Results per page (max 500)

None
page_token str | None

Resume from this pagination token

None

Yields:

Type Description
AsyncIterator[Person]

Person objects matching the search term

Source code in affinity/services/persons.py
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
async def search_all(
    self,
    term: str,
    *,
    with_interaction_dates: bool = False,
    with_interaction_persons: bool = False,
    with_opportunities: bool = False,
    page_size: int | None = None,
    page_token: str | None = None,
) -> AsyncIterator[Person]:
    """
    Iterate all V1 person-search results with automatic pagination.

    Args:
        term: Search term (name or email)
        with_interaction_dates: Include interaction date data
        with_interaction_persons: Include persons for interactions
        with_opportunities: Include associated opportunity IDs
        page_size: Results per page (max 500)
        page_token: Resume from this pagination token

    Yields:
        Person objects matching the search term
    """
    async for page in self.search_pages(
        term,
        with_interaction_dates=with_interaction_dates,
        with_interaction_persons=with_interaction_persons,
        with_opportunities=with_opportunities,
        page_size=page_size,
        page_token=page_token,
    ):
        for person in page.data:
            yield person

search_pages(term: str, *, with_interaction_dates: bool = False, with_interaction_persons: bool = False, with_opportunities: bool = False, page_size: int | None = None, page_token: str | None = None) -> AsyncIterator[V1PaginatedResponse[Person]] async

Iterate V1 person-search result pages.

Useful for scripts that need checkpoint/resume via next_page_token.

Parameters:

Name Type Description Default
term str

Search term (name or email)

required
with_interaction_dates bool

Include interaction date data

False
with_interaction_persons bool

Include persons for interactions

False
with_opportunities bool

Include associated opportunity IDs

False
page_size int | None

Results per page (max 500)

None
page_token str | None

Resume from this pagination token

None

Yields:

Type Description
AsyncIterator[V1PaginatedResponse[Person]]

V1PaginatedResponse[Person] for each page

Source code in affinity/services/persons.py
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
async def search_pages(
    self,
    term: str,
    *,
    with_interaction_dates: bool = False,
    with_interaction_persons: bool = False,
    with_opportunities: bool = False,
    page_size: int | None = None,
    page_token: str | None = None,
) -> AsyncIterator[V1PaginatedResponse[Person]]:
    """
    Iterate V1 person-search result pages.

    Useful for scripts that need checkpoint/resume via `next_page_token`.

    Args:
        term: Search term (name or email)
        with_interaction_dates: Include interaction date data
        with_interaction_persons: Include persons for interactions
        with_opportunities: Include associated opportunity IDs
        page_size: Results per page (max 500)
        page_token: Resume from this pagination token

    Yields:
        V1PaginatedResponse[Person] for each page
    """
    requested_token = page_token
    page = await self.search(
        term,
        with_interaction_dates=with_interaction_dates,
        with_interaction_persons=with_interaction_persons,
        with_opportunities=with_opportunities,
        page_size=page_size,
        page_token=page_token,
    )
    while True:
        yield page
        next_token = page.next_page_token
        if not next_token or next_token == requested_token:
            return
        requested_token = next_token
        page = await self.search(
            term,
            with_interaction_dates=with_interaction_dates,
            with_interaction_persons=with_interaction_persons,
            with_opportunities=with_opportunities,
            page_size=page_size,
            page_token=next_token,
        )

update(person_id: PersonId, data: PersonUpdate) -> Person async

Update an existing person.

Note: To add emails/organizations, include existing values plus new ones.

Source code in affinity/services/persons.py
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
async def update(
    self,
    person_id: PersonId,
    data: PersonUpdate,
) -> Person:
    """
    Update an existing person.

    Note: To add emails/organizations, include existing values plus new ones.
    """
    payload = data.model_dump(
        by_alias=True,
        mode="json",
        exclude_unset=True,
        exclude_none=True,
    )

    result = await self._client.put(
        f"/persons/{person_id}",
        json=payload,
        v1=True,
    )

    if self._client.cache:
        self._client.cache.invalidate_prefix("person")

    return Person.model_validate(result)