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
Fixed 3 regressions introduced in previous commits and added 1 missing detail:
1. Create Person: Changed last_name from false to true (required)
- Regression from commit de7e51f
- Browser validation: confirmed last_name is required field
2. Relationship Strengths: Removed misplaced 103-line reminders example
- Regression from commit de7e51f
- This section should only have /relationships-strengths examples
- Removed entire /reminders API response that didn't belong here
3. Update Organization: Fixed POST to PUT and added proper example
- Regression from commit 5e1a6ca
- Changed curl -X POST to curl -X PUT
- Added organization_id path parameter to example
- Added complete example response
4. Rate Limit: Added missing exemption note (pre-existing, not regression)
- Added note that /rate-limit and /auth/whoami are exempt from
organization-level monthly rate limits
- This was in the live docs but never documented in markdown
All changes validated against live browser content at api-docs.affinity.co
Net change: -97 lines (removed bad content, added missing note)
@@ -4711,6 +4611,9 @@ Querying the rate limit endpoint will yield information about account (AKA organ
4711
4611
4712
4612
The rate limit resource, a JSON body of data including limit, calls remaining, seconds until reset and calls count for both organization-level monthly limits and API key-level per-minute limits.
4713
4613
4614
+
> **Note**
4615
+
> `/rate-limit` and `/auth/whoami` endpoints are exempt from organization-level monthly rate limits.
0 commit comments