Field values (V1)¶
Service for managing field values.
For list entry field values, prefer ListEntryService.update_field_value(). Use this for global field values not tied to list entries.
Source code in affinity/services/v1_only.py
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 | |
create(data: FieldValueCreate) -> FieldValue
¶
Create a field value (V1 API).
Note: V1 writes require numeric field IDs. The SDK accepts V2-style
field-<digits> IDs and converts them; enriched/relationship-intelligence
IDs are not supported.
Source code in affinity/services/v1_only.py
972 973 974 975 976 977 978 979 980 981 982 983 984 | |
delete(field_value_id: FieldValueId) -> bool
¶
Delete a field value.
Source code in affinity/services/v1_only.py
995 996 997 998 | |
get_for_entity(field_id: str | FieldId, *, person_id: PersonId | None = None, company_id: CompanyId | None = None, opportunity_id: OpportunityId | None = None, list_entry_id: ListEntryId | None = None, default: T = _UNSET) -> FieldValue | T | None
¶
Get a specific field value for an entity.
Convenience method that fetches all field values and returns the one matching field_id. Like dict.get(), returns None (or default) if not found.
Note: This still makes one API call to fetch all field values for the entity.
For entities with hundreds of field values, prefer using list() directly
if you need to inspect multiple fields.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
field_id
|
str | FieldId
|
The field to look up (accepts str or FieldId for convenience) |
required |
person_id
|
PersonId | None
|
Person entity (exactly one entity ID required) |
None
|
company_id
|
CompanyId | None
|
Company entity |
None
|
opportunity_id
|
OpportunityId | None
|
Opportunity entity |
None
|
list_entry_id
|
ListEntryId | None
|
List entry entity |
None
|
default
|
T
|
Value to return if field not found (default: None) |
_UNSET
|
Returns:
| Name | Type | Description |
|---|---|---|
FieldValue | T | None
|
FieldValue if the field has a value, default otherwise. |
|
Note |
FieldValue | T | None
|
A FieldValue with |
Example
Check if a person has a specific field value¶
status = client.field_values.get_for_entity( "field-123", # or FieldId("field-123") person_id=PersonId(456), ) if status is None: print("Field is empty") else: print(f"Value: {status.value}")
With default value¶
status = client.field_values.get_for_entity( "field-123", person_id=PersonId(456), default="N/A", )
Source code in affinity/services/v1_only.py
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 | |
list(*, person_id: PersonId | None = None, company_id: CompanyId | None = None, opportunity_id: OpportunityId | None = None, list_entry_id: ListEntryId | None = None) -> list[FieldValue]
¶
Get field values for an entity.
Exactly one of person_id, company_id, opportunity_id, or list_entry_id must be provided.
Raises:
| Type | Description |
|---|---|
ValueError
|
If zero or multiple IDs are provided. |
Source code in affinity/services/v1_only.py
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 | |
list_batch(person_ids: Sequence[PersonId] | None = None, company_ids: Sequence[CompanyId] | None = None, opportunity_ids: Sequence[OpportunityId] | None = None, *, on_error: Literal['raise', 'skip'] = 'raise') -> dict[PersonId | CompanyId | OpportunityId, builtins.list[FieldValue]]
¶
Get field values for multiple entities.
Performance note: This makes one API call per entity (O(n) calls). There is no server-side batch endpoint. Use this for convenience and consistent error handling, not for performance optimization. For parallelism, use the async client.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
person_ids
|
Sequence[PersonId] | None
|
Sequence of person IDs (mutually exclusive with others) |
None
|
company_ids
|
Sequence[CompanyId] | None
|
Sequence of company IDs |
None
|
opportunity_ids
|
Sequence[OpportunityId] | None
|
Sequence of opportunity IDs |
None
|
on_error
|
Literal['raise', 'skip']
|
How to handle errors - "raise" (default) or "skip" failed IDs |
'raise'
|
Returns:
| Name | Type | Description |
|---|---|---|
dict[PersonId | CompanyId | OpportunityId, list[FieldValue]]
|
Dict mapping entity_id -> list of field values. |
|
Note |
dict[PersonId | CompanyId | OpportunityId, list[FieldValue]]
|
Dict ordering is not guaranteed; do not rely on insertion order. |
Example
Check which persons have a specific field set¶
fv_map = client.field_values.list_batch(person_ids=person_ids) for person_id, field_values in fv_map.items(): has_status = any(fv.field_id == target_field for fv in field_values)
Source code in affinity/services/v1_only.py
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 | |
update(field_value_id: FieldValueId, value: Any) -> FieldValue
¶
Update a field value.
Source code in affinity/services/v1_only.py
986 987 988 989 990 991 992 993 | |