DocsAPIPeopleList peopleLists people. Optionally filter by company_id, tags, and is_reporting_contact. Excludes data enrichments shown in the app. GET/peopleSendQuery ParamslimitnumberMaximum number of results (1-1000, default: 500)Example: 500offsetnumberNumber of results to skip (default: 0)Example: 0company_idstringFilter by company IDExample: 42tagsstringFilter by tags (comma-separated). Returns people that have any of the given tags.Example: founder,boardis_reporting_contactstringFilter by reporting-contact statusExample: trueSelect valueCredentialsBearercURLJavaScriptPythonGocurl -X GET "https://api.fundra.com/v1/people?company_id=42&tags=founder%2Cboard&is_reporting_contact=true" \ -H "Authorization: Bearer <token>"200401Successfully retrieved peopleResponse{ "data": [ { "id": "1", "uuid": "550e8400-e29b-41d4-a716-446655440000", "company_id": "42", "name": "Jane Doe", "email": "jane@acme.com", "phone": "+1 555 123 4567", "title": "Chief Executive Officer", "seniority": "C-Level", "functions": [ "CEO" ], "description": "Serial founder, previously at Acme", "country": "United States", "city": "San Francisco", "avatar_url": "https://example.com/avatar.png", "linkedin_url": "https://linkedin.com/in/janedoe", "twitter_url": "https://x.com/janedoe", "facebook_url": null, "github_url": null, "cb_url": null, "linkedin_org_name": "Acme Inc", "tags": [ "founder" ], "is_reporting_contact": true, "last_seen": "2024-01-15T10:00:00Z", "created_at": "2024-01-15T10:00:00Z", "updated_at": "2024-02-20T09:00:00Z" } ], "pagination": { "total": 200, "limit": 500, "offset": 0 } }TypeScriptPreviousCreate an upload URLPOSTNextAdd person to a companyPOST