You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix API endpoint paths and remove misplaced examples
- Fix Field Value Changes endpoint: /field-values-changes → /field-value-changes (3 occurrences)
- Remove stray organizations/fields curl example from Fields section (belongs in Organizations)
- Remove dangling GET /lists/{list_id} line from Fields section
- Fix Entity Files 'Get a Specific File' section: remove misplaced webhook examples
All changes verified against live browser documentation.
Copy file name to clipboardExpand all lines: docs/v1/affinity_api_docs.md
+17-70Lines changed: 17 additions & 70 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -467,10 +467,10 @@ GET /fields Response:
467
467
]
468
468
```
469
469
470
-
3. Query [`GET /field-values-changes`](#field-value-change) passing in the `id` from Step 2
470
+
3. Query [`GET /field-value-changes`](#field-value-change) passing in the `id` from Step 2
471
471
472
472
```
473
-
GET /field-values-changes Response:
473
+
GET /field-value-changes Response:
474
474
[
475
475
{
476
476
"id": 7,
@@ -513,10 +513,10 @@ GET /field-values-changes Response:
513
513
]
514
514
```
515
515
516
-
4. Filter results of [`GET /field-values-changes`](#field-value-change) (e.g.: If you only want status field changes for a specific organization in your list, search by the `list_entry_id`).
516
+
4. Filter results of [`GET /field-value-changes`](#field-value-change) (e.g.: If you only want status field changes for a specific organization in your list, search by the `list_entry_id`).
517
517
518
518
```
519
-
GET /field-values-changes Response:
519
+
GET /field-value-changes Response:
520
520
[
521
521
{
522
522
"id": 7,
@@ -1279,19 +1279,9 @@ curl -X POST "https://api.affinity.co/fields" \
@@ -1955,7 +1945,7 @@ The action types specified below correspond to the action_type of a field value
1955
1945
1956
1946
#### Get Field Values Changes
1957
1947
1958
-
`GET /field-values-changes`
1948
+
`GET /field-value-changes`
1959
1949
1960
1950
Returns all field value changes attached to a specific field. Field value changes can be filtered by action_type, person, organization, opportunity or list_entry by passing in the appropriate parameters.
0 commit comments