diff --git a/app.py b/app.py index ed7e94f..6040f82 100644 --- a/app.py +++ b/app.py @@ -3,7 +3,7 @@ import os from functools import wraps from datetime import datetime, timedelta -from flask import Flask, render_template, request, redirect, url_for, session, abort, jsonify +from flask import Flask, render_template, request, redirect, url_for, session, abort, jsonify from dotenv import load_dotenv import firebase_admin from firebase_admin import credentials, auth as fb_auth, firestore @@ -129,8 +129,28 @@ def fetch_all_projects(): fees_and_costs = fetch_form(bearer, pid, "feesAndCosts") or {} lease_info_np = fetch_form(bearer, pid, "leaseInfoNP") or {} - completed_tasks = [x.get("body") for x in fetch_project_tasks(bearer, pid).get("items") if x.get("isCompleted")] - pending_tasks = [x.get("body") for x in fetch_project_tasks(bearer, pid).get("items") if not x.get("isCompleted")] + completed_tasks = [{"description": x.get("body") , + "completed": x.get("completedDate")} + for x in fetch_project_tasks(bearer, pid).get("items") + if x.get("isCompleted")] + pending_tasks = [{"description": x.get("body") , + "completed": x.get("completedDate")} + for x in fetch_project_tasks(bearer, pid).get("items") + if not x.get("isCompleted")] + + team = fetch_project_team(bearer, pid) + assigned_attorney = next((m.get('fullname') + for m in team + if ('Assigned Attorney' in [r.get('name') for r in m.get('teamOrgRoles')]) + ), '') + primary_contact = next((m.get('fullname') + for m in team + if ('Primary' in [r.get('name') for r in m.get('teamOrgRoles')]) + ), '') + secondary_paralegal = next((m.get('fullname') + for m in team + if ('Secondary Paralegal' in [r.get('name') for r in m.get('teamOrgRoles')]) + ), '') # Extract notice service and expiration dates notice_service_date = new_file_review.get("noticeServiceDate") or '' @@ -141,6 +161,7 @@ def fetch_all_projects(): # Extract default date default_date = dates_and_deadlines.get("defaultDate") or '' + case_filed_date = dates_and_deadlines.get("dateCaseFiled") or '' # Extract motion hearing dates demurrer_hearing_date = dates_and_deadlines.get("demurrerHearingDate") or '' @@ -195,16 +216,16 @@ def fetch_all_projects(): "notice_type": new_file_review.get("noticeType", '') or '', "case_number": dates_and_deadlines.get('caseNumber', '') or '', "premises_address": property_info.get("premisesAddressWithUnit") or '', - "premises_city": property_info.get("premisisCity") or '', - "client_email": "", # TODO - "responsible_attorney": matter_overview.get("signingAttorney"), - "staff_person": project_overview.get("teamLead"), # TODO - "staff_person_2": project_overview.get("teamLead"), # TODO + "premises_city": property_info.get("premisesCity") or '', + "responsible_attorney": assigned_attorney, + "staff_person": primary_contact, + "staff_person_2": secondary_paralegal, "phase_name": p.get("phaseName"), "completed_tasks": completed_tasks, "pending_tasks": pending_tasks, "notice_service_date": notice_service_date, "notice_expiration_date": notice_expiration_date, + "case_field_date": case_filed_date, "daily_rent_damages": daily_rent_damages, "default_date": default_date, "demurrer_hearing_date": demurrer_hearing_date, @@ -232,7 +253,7 @@ def fetch_all_projects(): "date_possession_recovered": date_possession_recovered, "attorney_fees": attorney_fees, "costs": costs, - + "documents_url": matter_overview.get('documentShareFolderURL') or '', "service_attempt_date_1": next(iter(service_info), {}).get('serviceDate'), "contacts": cs, "ProjectEmailAddress": p.get("projectEmailAddress"), @@ -395,6 +416,20 @@ def fetch_project_detail(bearer: str, project_id_native: int): r.raise_for_status() return r.json() +def fetch_project_team(bearer: str, project_id_native: int): + url = f"https://api.filevineapp.com/fv-app/v2/Projects/{project_id_native}/team?limit=1000" + headers = { + "Accept": "application/json", + "Authorization": f"Bearer {bearer}", + "x-fv-orgid": str(FV_ORG_ID), + "x-fv-userid": str(FV_USER_ID), + } + r = requests.get(url, headers=headers, timeout=30) + r.raise_for_status() + from pprint import pprint + pprint( r.json().get('items') or []) + return r.json().get('items') or [] + def fetch_project_tasks(bearer: str, project_id_native: int): url = f"https://api.filevineapp.com/fv-app/v2/Projects/{project_id_native}/tasks" headers = { diff --git a/examples/forms__complaintInfo.json b/examples/forms__complaintInfo.json index 31de141..efad9c4 100644 --- a/examples/forms__complaintInfo.json +++ b/examples/forms__complaintInfo.json @@ -3,7 +3,7 @@ "url": "https://api.filevineapp.com/fv-app/v2/Projects/15974631/Forms/complaintInfo", "headers": { "Accept": "application/json", - "Authorization": "Bearer eyJhbGciOiJSUzUxMiIsImtpZCI6Ijg2NjRFMkY0MDNCQjIxMzk2MzQ4NUFDOEI0MzVGMEJBOTgxNTBFN0RSUzUxMiIsInR5cCI6ImF0K2p3dCIsIng1dCI6ImhtVGk5QU83SVRsalNGckl0RFh3dXBnVkRuMCJ9.eyJuYmYiOjE3NjIzOTk2NjksImV4cCI6MTc2MjQwMTQ2OSwiaXNzIjoiaHR0cHM6Ly9pZGVudGl0eS5maWxldmluZS5jb20iLCJhdWQiOlsiZmlsZXZpbmUudjIuYXBpIiwiZnYuYXBpLmdhdGV3YXkiLCJmdi5hdXRoIl0sImNsaWVudF9pZCI6IjRGMTg3MzhDLTEwN0EtNEI4Mi1CRkFDLTMwOEYxQjZBNjI2QSIsInN1YiI6ImY3MDQ4NGZmLTQ5MjItNDliMy05MWFkLTE2YjA5Mjk5MGIzMCIsImF1dGhfdGltZSI6MTc2MjM5OTY2OSwiaWRwIjoibG9jYWwiLCJwYXRfaWQiOiJoQll0K013VUJ4bm9xOTNYNVNUdnpyY0xwVFQ2M09HVHhudVcrZGFyZTVJPSIsInBhdF9uYW1lIjoiQnJ5Y2UgQ292ZXJ0IiwicGF0X3ZlcnNpb24iOiIxIiwidGVuYW50X2ZybiI6ImZybjpmaWxldmluZTp1cy1wcm9kOmZpbGV2aW5lLWFwcDo6OnRlbmFudFxcMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwidGVuYW50X2lkIjoiMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwianRpIjoiQ0U4MzQ4MzFGNkZERjBGNTM3NkE3RjFFNzEzQjgwODUiLCJpYXQiOjE3NjIzOTk2NjksInNjb3BlIjpbImVtYWlsIiwiZmlsZXZpbmUudjIuYXBpLioiLCJmdi5hcGkuZ2F0ZXdheS5hY2Nlc3MiLCJmdi5hdXRoLnRlbmFudC5yZWFkIiwib3BlbmlkIiwidGVuYW50Il0sImFtciI6WyJwZXJzb25hbF9hY2Nlc3NfdG9rZW4iXX0.oFChAJSVbIy1krgHBVSpULbaPiuxouM5EzgVXJmgChooXWIGyrIvlyF46jcc7fA3JUuDZqaclv_dV_JbAohewWLZwPemKx_BkInxuRew_FRjG3Q0Og2sGRyuupKnAxn7yGXBUPfgTPEYZssBscuiCpfbRLbparoO1TDTDDNeKpj2ScnV4LClLPQi0pBWC5Xw7SpCGM6CNP6NoGe_ifuvq5NbZc33HaQQlo8HKGBib1pJ4sOm0HTbM5mmKCo_9_y8EtR4e9WygokCSaqBAWxg2IohPxd0gqG71EIEOq0dDkGLpMwMpH9oGLWgcKxFuMpxdj1cQKSQO0nd67H3fyHs0A", + "Authorization": "Bearer eyJhbGciOiJSUzUxMiIsImtpZCI6Ijk5MDg4NENGRTRCRTgyQzU4QzA0MDJBQjc5MkE2Rjc5NkI5MUQ2MTBSUzUxMiIsInR5cCI6ImF0K2p3dCIsIng1dCI6Im1RaUV6LVMtZ3NXTUJBS3JlU3B2ZVd1UjFoQSJ9.eyJuYmYiOjE3NjI0OTM4MjMsImV4cCI6MTc2MjQ5NTYyMywiaXNzIjoiaHR0cHM6Ly9pZGVudGl0eS5maWxldmluZS5jb20iLCJhdWQiOlsiZmlsZXZpbmUudjIuYXBpIiwiZnYuYXBpLmdhdGV3YXkiLCJmdi5hdXRoIl0sImNsaWVudF9pZCI6IjRGMTg3MzhDLTEwN0EtNEI4Mi1CRkFDLTMwOEYxQjZBNjI2QSIsInN1YiI6ImY3MDQ4NGZmLTQ5MjItNDliMy05MWFkLTE2YjA5Mjk5MGIzMCIsImF1dGhfdGltZSI6MTc2MjQ5MzgyMywiaWRwIjoibG9jYWwiLCJwYXRfaWQiOiJoQll0K013VUJ4bm9xOTNYNVNUdnpyY0xwVFQ2M09HVHhudVcrZGFyZTVJPSIsInBhdF9uYW1lIjoiQnJ5Y2UgQ292ZXJ0IiwicGF0X3ZlcnNpb24iOiIxIiwidGVuYW50X2ZybiI6ImZybjpmaWxldmluZTp1cy1wcm9kOmZpbGV2aW5lLWFwcDo6OnRlbmFudFxcMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwidGVuYW50X2lkIjoiMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwianRpIjoiM0NCQkZCREFFRjNDRjk2Q0UzNDUwNjUxRUJEM0NEMzYiLCJpYXQiOjE3NjI0OTM4MjMsInNjb3BlIjpbImVtYWlsIiwiZmlsZXZpbmUudjIuYXBpLioiLCJmdi5hcGkuZ2F0ZXdheS5hY2Nlc3MiLCJmdi5hdXRoLnRlbmFudC5yZWFkIiwib3BlbmlkIiwidGVuYW50Il0sImFtciI6WyJwZXJzb25hbF9hY2Nlc3NfdG9rZW4iXX0.vVYgcApIguL-rbZlxLH8URxt2kmWSIgyyUV6iCiQkPpRnDUTCB5UZRcZVQKzdRcE4Jr1uE4p-fxwFTjzJU1LvgjTfYiz3Yc_x2n9Zo2CjxEOHWZlRWdAepvnglYR9sQxHzalkg4mNAR53m5bjA4fdA6iLfc4FStturSl_Yf2KgnZ_IfLAS_fyDxBYKhcQt8eZFMTLt6Z9J-Iz4M2ggNZx_Xg0wJkLmCNQBNI3irC7eu4sBdNnffP1aU9xTtQXWeEzPlZ9tcKkHi0fLULoxipYPWAZIiyJdA-NKgMSp4O2AmPcNnorULEVdahREI64zVuIf8zSUYfaRLby8lxXMPJYw", "x-fv-orgid": "9227", "x-fv-userid": "100510" }, @@ -270,7 +270,7 @@ }, "xxx": "b'{\"complaintVerificationBy\":\"Agent for Plaintiff\",\"complaintVerificationContact\":{\"id\":43407877,\"contactNumber\":\"0\",\"orgID\":9227,\"firstName\":\"Samantha\",\"middleName\":null,\"lastName\":\"Norton\",\"fullname\":\"Samantha Norton\",\"isSingleName\":false,\"fromCompany\":null,\"primaryLanguage\":null,\"orgMetaVersionID\":0,\"jobTitle\":null,\"department\":null,\"prefix\":null,\"suffix\":null,\"fullnameExtended\":\"Samantha Norton\",\"nickname\":null,\"initials\":\"SN\",\"initialsFirstLast\":\"SN\",\"personTypes\":[{\"id\":107183,\"name\":\"Property Manager\",\"badgeColorClass\":null,\"isDeprecated\":false,\"includeBirthdateField\":false,\"globalSourceGuid\":\"64474682-4334-41ca-85e9-bdb0fc4ffac0\"}],\"tags\":[],\"isArchived\":false,\"createdDate\":\"2025-11-04T20:22:31.887Z\",\"modifiedDate\":\"2025-11-04T20:26:41.3Z\",\"phones\":[{\"id\":74943071,\"number\":\"(408) 712-0299\",\"extension\":null,\"rawNumber\":\"4087120299\",\"isSmsable\":false,\"isFaxable\":false,\"label\":null,\"phoneLabel\":null,\"notes\":null}],\"emails\":[{\"id\":19359086,\"address\":\"michele@toddrothbardlaw.com\",\"emailLabel\":null,\"label\":null,\"notes\":null}],\"addresses\":[{\"id\":56496788,\"line1\":\"465 West San Carlos Street\",\"line2\":\"\",\"line3\":null,\"city\":\"San Jose\",\"state\":\"CA\",\"zip\":\"95110\",\"country\":null,\"label\":null,\"addressLabel\":null,\"notes\":null,\"fullAddress\":\"465 West San Carlos Street, San Jose, CA 95110\"}],\"pictureUrl\":\"/images/Default86c987b2-9505-4182-9486-48c7fb607693.png\",\"pictureKey\":\"Default86c987b2-9505-4182-9486-48c7fb607693.png\",\"birthDate\":null,\"deathDate\":null,\"isDeceased\":null,\"ageInYears\":null,\"uniqueID\":\"ea8be4a2-e226-452f-80ae-da25efb05b62\",\"abbreviatedName\":null,\"ssn\":null,\"notes\":null,\"specialty\":null,\"gender\":null,\"language\":null,\"maritalStatus\":null,\"isTextingPermitted\":null,\"remarket\":null,\"driverLicenseNumber\":null,\"isTypeClient\":null,\"isTypeAdjuster\":null,\"isTypeDefendant\":null,\"isTypePlaintiff\":null,\"isTypeAttorney\":null,\"isTypeFirm\":null,\"isTypeExpert\":null,\"isTypeMedicalProvider\":null,\"isTypeInvolvedParty\":null,\"isTypeJudge\":null,\"isTypeCourt\":null,\"isTypeInsuranceCompany\":null,\"salutation\":null,\"barNumber\":null,\"fiduciary\":null,\"isMinor\":null,\"searchNames\":[\"samantha\",\"norton\",\"samantha norton\"]},\"totalDamagesSought\":\"over $10,000.00\",\"amendedComplaintRequired\":null,\"reasonForAmendment\":null,\"documentsAmended\":null,\"amendmentNumber\":null,\"dateAmendmentFiled\":null,\"prepareComplaintDocs\":null,\"migratedDamages\":null,\"cMPPreppedAndApprovedBy\":\"Michele Le\",\"noticeExhibit\":\"Exhibit A\",\"prepareSummonsDoc\":{\"id\":492895445,\"orgID\":9227,\"projectID\":15974631,\"filename\":\"CMP - Summons (SUM-130)(16) 2025-11-04 1243.pdf\",\"uploadDate\":\"2025-11-04T20:43:09.613Z\",\"templateID\":null,\"templateName\":null,\"reportFusionID\":7143,\"reportFusionName\":\"CMP - Summons (SUM-130)\",\"contractID\":null,\"canEditInPlace\":true,\"lockedByUserID\":null,\"lockedTime\":null,\"lockExpirationTime\":null,\"lockedByUserFullName\":null,\"isPending\":false,\"isProtected\":false,\"isProtectedPlaceholder\":false,\"contract\":null,\"antivirusScanResult\":[],\"docKey\":\"937c814b/Ocr-568bd51cd7f04c0ca7a0d3254c86b139.Pdf\"},\"prepareCivilCaseCoverSheetDocOLD\":null,\"prepareUD101DocOLD\":null,\"prepareUD120OLD\":null,\"noticeType\":null,\"prepareComplaintDoc\":null,\"premisesCounty\":null,\"prepareCivilCaseCoverSheet\":{\"id\":492895003,\"orgID\":9227,\"projectID\":15974631,\"filename\":\"CMP - Civil Case Coversheet (CM-010)(7) 2025-11-04 1243.pdf\",\"uploadDate\":\"2025-11-04T20:43:03.95Z\",\"templateID\":null,\"templateName\":null,\"reportFusionID\":7163,\"reportFusionName\":\"CMP - Civil Case Coversheet (CM-010)\",\"contractID\":null,\"canEditInPlace\":true,\"lockedByUserID\":null,\"lockedTime\":null,\"lockExpirationTime\":null,\"lockedByUserFullName\":null,\"isPending\":false,\"isProtected\":false,\"isProtectedPlaceholder\":false,\"contract\":null,\"antivirusScanResult\":[],\"docKey\":\"fac37db0/Ocr-9d8b538947e24a6cb9b97d900fa22ef3.Pdf\"},\"prepareUD101\":{\"id\":492895477,\"orgID\":9227,\"projectID\":15974631,\"filename\":\"CMP - Supp Allegations (UD-101)(9) 2025-11-04 1243.pdf\",\"uploadDate\":\"2025-11-04T20:43:17.38Z\",\"templateID\":null,\"templateName\":null,\"reportFusionID\":7166,\"reportFusionName\":\"CMP - Supp Allegations (UD-101)\",\"contractID\":null,\"canEditInPlace\":true,\"lockedByUserID\":null,\"lockedTime\":null,\"lockExpirationTime\":null,\"lockedByUserFullName\":null,\"isPending\":false,\"isProtected\":false,\"isProtectedPlaceholder\":false,\"contract\":null,\"antivirusScanResult\":[],\"docKey\":\"ac764364/Ocr-ae867596cf7a4c10ae251c4dc2e7b2b3.Pdf\"},\"prepareUD120\":{\"id\":492895454,\"orgID\":9227,\"projectID\":15974631,\"filename\":\"CMP - Verification of RA (UD-120)(5) 2025-11-04 1243.pdf\",\"uploadDate\":\"2025-11-04T20:43:10.737Z\",\"templateID\":null,\"templateName\":null,\"reportFusionID\":7167,\"reportFusionName\":\"CMP - Verification of RA (UD-120)\",\"contractID\":null,\"canEditInPlace\":true,\"lockedByUserID\":null,\"lockedTime\":null,\"lockExpirationTime\":null,\"lockedByUserFullName\":null,\"isPending\":false,\"isProtected\":false,\"isProtectedPlaceholder\":false,\"contract\":null,\"antivirusScanResult\":[],\"docKey\":\"92b65ed6/Ocr-965f89bc3e4340539992c465d31e940a.Pdf\"},\"civilJurisdiction\":\"Limited\",\"prepareNonStip\":null,\"complaintSubmittedToCourtEmail\":null,\"complaintSubmittedToCourtSanJoaquin Email\":null,\"bILLING\":null,\"addFeeForResidentialNonpayment\":null,\"typeOfTenancy\":null,\"uDBaseFeeResidentialNonpa\":null,\"addFeeForCommercialNonpayment\":null,\"uDBaseFeeCommercialNonpay\":null,\"billForCourtFilingFee\":null,\"costsInitialCaseFilingFee\":null,\"billForServiceOfSummons\":null,\"costsServiceOfSummons\":null,\"billForUnlimitedEFiling\":null,\"costsUnlimitedEFiling\":null,\"pIACostsInfoOnlyNotCalc\":null,\"billBaseFeeForCase\":null,\"useAdditionalPlaintiffsAttach\":null,\"useAdditionalDefendantsAttachment\":null,\"filedCaseReceivedFromCourt\":null,\"checkComplaintTaskList\":null,\"prepareAdditionalDefendantsSumAttach\":null,\"prepareAdditionalPlaintiffsSumAttach\":null,\"selectCountiesThatRequireUD101UD120\":\"Santa Clara UD-101, UD-120\",\"selectCountiesThatRequireAddlFormWCmp\":null,\"prepareNonStipToCommissioner\":null,\"prepareStanislausCIV011\":null,\"postFilingTasks\":null,\"selectCountyThatRequiresACaseAccessReq\":null,\"marinCaseAccessLink\":null,\"nevadaCaseAccessForm\":null,\"prepareSolanoCaseAccessForm\":null,\"emailSolanoCaseAccessForm\":null}'", "headers": { - "Date": "Thu, 06 Nov 2025 03:27:50 GMT", + "Date": "Fri, 07 Nov 2025 05:37:03 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Connection": "keep-alive", @@ -283,16 +283,16 @@ "ratelimit-remaining": "9;r=3300;w=60;c=Customer Temp", "content-security-policy": "default-src 'self';child-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://app.vinesign.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.amazonaws.com https://app.pendo.io https://feedback.us.pendo.io docs.google.com https://feedback.filevine.com *.newrelic.com *.filev.io *.flvn.io filev.io flvn.io 'self';connect-src *.filevinedev.com *.filevineapp.com *.filevine.ca *.filevine.com *.filevinegov.com *.fvauth.com https://app.vinesign.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.amazonaws.com *.nr-data.net *.pendo.io *.pdftron.com *.typeform.com *.newrelic.com https://app.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://localhost:8080 *.filev.io *.flvn.io filev.io flvn.io 'self' blob: wss:;font-src *.bootstrapcdn.com fonts.gstatic.com *.typekit.net *.typeform.com 'self' data: blob:;frame-src *;frame-ancestors https://*.filevineapp.com https://app.pendo.io 'self';img-src *.typekit.net *.typeform.com https://app.pendo.io https://cdn.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-globalproducts-prod-us-logos.s3.us-west-2.amazonaws.com https://us.fv-globalproducts-logos.prod.filevine.com https://fv-prod-us-shard-h-fv-internal-image.s3.amazonaws.com https://fv-prod-us-shard-h-fv-internal-image.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.filev.io *.flvn.io filev.io flvn.io *.kaywa.com www.googletagmanager.com 'self' data: blob: cid:;manifest-src 'self';media-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://us-shard-h-discussions.filevineapp.com *.filev.io *.flvn.io filev.io flvn.io 'self';object-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com *.filev.io *.flvn.io filev.io flvn.io 'self';script-src *.bootstrapcdn.com *.typekit.net *.typeform.com *.newrelic.com *.nr-data.net https://app.pendo.io https://cdn.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://duuxdetkhlwyv.cloudfront.net https://code.jquery.com https://localhost:8080 https://www.googletagmanager.com 'unsafe-inline' 'unsafe-eval' 'self' blob:;style-src *.bootstrapcdn.com fonts.googleapis.com *.typekit.net *.typeform.com https://app.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://duuxdetkhlwyv.cloudfront.net https://cdn.pendo.io https://data.pendo.io 'unsafe-inline' 'self';worker-src 'self' blob: 'unsafe-inline'", "x-filevine-api-version": "3.3487.15.0", - "x-fv-correlation-id": "020596bda18345439f7ccfcdc5b23566", + "x-fv-correlation-id": "ad010d206a534fbc96cda35d1d6cff19", "x-aspnet-version": "4.0.30319", "x-powered-by": "ASP.NET", "x-content-type-options": "nosniff", "x-frame-option": "SAMEORIGIN", "x-xss-protection": "1; mode=block", - "x-fv-gateway-correlation-id": "020596bda18345439f7ccfcdc5b23566", + "x-fv-gateway-correlation-id": "ad010d206a534fbc96cda35d1d6cff19", "cf-cache-status": "DYNAMIC", "Content-Encoding": "gzip", - "CF-RAY": "99a17f506cc9281a-SEA", + "CF-RAY": "99aa79fc3fc276e5-SEA", "alt-svc": "h3=\":443\"; ma=86400" } } diff --git a/examples/forms__newFileReview.json b/examples/forms__newFileReview.json index 5f7da6b..afd4534 100644 --- a/examples/forms__newFileReview.json +++ b/examples/forms__newFileReview.json @@ -3,7 +3,7 @@ "url": "https://api.filevineapp.com/fv-app/v2/Projects/15974631/Forms/newFileReview", "headers": { "Accept": "application/json", - "Authorization": "Bearer eyJhbGciOiJSUzUxMiIsImtpZCI6Ijg2NjRFMkY0MDNCQjIxMzk2MzQ4NUFDOEI0MzVGMEJBOTgxNTBFN0RSUzUxMiIsInR5cCI6ImF0K2p3dCIsIng1dCI6ImhtVGk5QU83SVRsalNGckl0RFh3dXBnVkRuMCJ9.eyJuYmYiOjE3NjIzOTk2NzAsImV4cCI6MTc2MjQwMTQ3MCwiaXNzIjoiaHR0cHM6Ly9pZGVudGl0eS5maWxldmluZS5jb20iLCJhdWQiOlsiZmlsZXZpbmUudjIuYXBpIiwiZnYuYXBpLmdhdGV3YXkiLCJmdi5hdXRoIl0sImNsaWVudF9pZCI6IjRGMTg3MzhDLTEwN0EtNEI4Mi1CRkFDLTMwOEYxQjZBNjI2QSIsInN1YiI6ImY3MDQ4NGZmLTQ5MjItNDliMy05MWFkLTE2YjA5Mjk5MGIzMCIsImF1dGhfdGltZSI6MTc2MjM5OTY3MCwiaWRwIjoibG9jYWwiLCJwYXRfaWQiOiJoQll0K013VUJ4bm9xOTNYNVNUdnpyY0xwVFQ2M09HVHhudVcrZGFyZTVJPSIsInBhdF9uYW1lIjoiQnJ5Y2UgQ292ZXJ0IiwicGF0X3ZlcnNpb24iOiIxIiwidGVuYW50X2ZybiI6ImZybjpmaWxldmluZTp1cy1wcm9kOmZpbGV2aW5lLWFwcDo6OnRlbmFudFxcMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwidGVuYW50X2lkIjoiMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwianRpIjoiN0UwRkMxMTBDMjM5QjAzREM4MzFGODIwRDU3RTY0NTgiLCJpYXQiOjE3NjIzOTk2NzAsInNjb3BlIjpbImVtYWlsIiwiZmlsZXZpbmUudjIuYXBpLioiLCJmdi5hcGkuZ2F0ZXdheS5hY2Nlc3MiLCJmdi5hdXRoLnRlbmFudC5yZWFkIiwib3BlbmlkIiwidGVuYW50Il0sImFtciI6WyJwZXJzb25hbF9hY2Nlc3NfdG9rZW4iXX0.BqS5GigC1BtZnMOrjduP3Oa_0UdEIPwYdO0EaYUYIVerB4tl5ryiJBxK0KOVqlE8uODpz04bIBy6JdLp3cjoVpzg7Zx3xG7zP_HOWNdVnVmKDbLgwWT0CLpqOE6H5EdZIC_lS5eKiwBCCAbBrYsD6afVsA3r1qEb5iFt_1ra3QyxrtyP-rWtTjHF3ifuyOqwImaTI7L1e1Fu1MHRyM0a9FnkQZmDpUKfopNftCz9nRv93ebjAbkipWNM9zPt-73BmSbEfpcnFWOjkIOqKzU-4GvElUlNj72_ek_QPSlr4Dx_uLsx0-3Mlp8S6wPp2me0PcqSSmm8aaHdGaoGPiyUPQ", + "Authorization": "Bearer eyJhbGciOiJSUzUxMiIsImtpZCI6Ijk5MDg4NENGRTRCRTgyQzU4QzA0MDJBQjc5MkE2Rjc5NkI5MUQ2MTBSUzUxMiIsInR5cCI6ImF0K2p3dCIsIng1dCI6Im1RaUV6LVMtZ3NXTUJBS3JlU3B2ZVd1UjFoQSJ9.eyJuYmYiOjE3NjI0OTM4MjQsImV4cCI6MTc2MjQ5NTYyNCwiaXNzIjoiaHR0cHM6Ly9pZGVudGl0eS5maWxldmluZS5jb20iLCJhdWQiOlsiZmlsZXZpbmUudjIuYXBpIiwiZnYuYXBpLmdhdGV3YXkiLCJmdi5hdXRoIl0sImNsaWVudF9pZCI6IjRGMTg3MzhDLTEwN0EtNEI4Mi1CRkFDLTMwOEYxQjZBNjI2QSIsInN1YiI6ImY3MDQ4NGZmLTQ5MjItNDliMy05MWFkLTE2YjA5Mjk5MGIzMCIsImF1dGhfdGltZSI6MTc2MjQ5MzgyMywiaWRwIjoibG9jYWwiLCJwYXRfaWQiOiJoQll0K013VUJ4bm9xOTNYNVNUdnpyY0xwVFQ2M09HVHhudVcrZGFyZTVJPSIsInBhdF9uYW1lIjoiQnJ5Y2UgQ292ZXJ0IiwicGF0X3ZlcnNpb24iOiIxIiwidGVuYW50X2ZybiI6ImZybjpmaWxldmluZTp1cy1wcm9kOmZpbGV2aW5lLWFwcDo6OnRlbmFudFxcMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwidGVuYW50X2lkIjoiMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwianRpIjoiNEVDREE2MUQ5OUQ3QzFDQTAyMERDMTBFOEE4MzZCOEUiLCJpYXQiOjE3NjI0OTM4MjQsInNjb3BlIjpbImVtYWlsIiwiZmlsZXZpbmUudjIuYXBpLioiLCJmdi5hcGkuZ2F0ZXdheS5hY2Nlc3MiLCJmdi5hdXRoLnRlbmFudC5yZWFkIiwib3BlbmlkIiwidGVuYW50Il0sImFtciI6WyJwZXJzb25hbF9hY2Nlc3NfdG9rZW4iXX0.QjcCcKhW_Nu2pTT5csgOouwpgt-Wz4GmagHmUE3gME-Z2BtsjFG60uUXzuaEuJov5N7EC6IPI-eqcG8wz9vLj7rTZ1B4Nb0Poy9v9g1kyc5-Glc9VtCRM9EPyYkW2Ykw-FJvISZ4Y4n3NwakhDBZ1WrYz_ytHKAnFglXMrnl8LVehE6A9JjuHBXI1p8bpo1OGL4niyFtvxXLV5JwWgnopUIcULX-mfKFavAs-3Lmt_lv7jcdhzWMwhlDyerUOdW8YUpBYft68xY57c6yaHEAQYQbvvCGSKYoSUn3M3UpdzBIsMOj2GIkinyTeVvCn0JFi41N_brz7hAmRM6MPjS0Mw", "x-fv-orgid": "9227", "x-fv-userid": "100510" }, @@ -133,7 +133,7 @@ }, "xxx": "b'{\"newFileBriefDescription\":null,\"newFileDetailedDescription\":null,\"noticeType\":\"Notice to Pay or Quit (NP)\",\"newFileNoticeToPrepNotes\":null,\"attorneyNewFileReviewNotes\":null,\"noticePrepNotesForReviewer\":null,\"noticeServiceDate\":\"2025-08-06T00:00:00Z\",\"noticeExpirationDate\":null,\"tenantCompliedWithNTCNTP\":null,\"tenantVacatedPerNotice\":null,\"nTCNTPViolationAfterNotic\":null,\"subpoenaNonStaffWitnesses\":null,\"attorneyFeesBaseFees\":null,\"attorneyFeesNTC\":null,\"actionUnder11612\":true,\"actionUnder11611\":null,\"actionUnder11613Curable\":null,\"actionUnder11613Incurabl\":null,\"actionUnder11614Subletti\":null,\"actionUnder11614Nuisance\":null,\"actionUnder11615\":null,\"actionUnder11614Crime\":null,\"actionUnder1161A\":null,\"116115CaseType\":null,\"194612CaseType\":null,\"1161ACaseType\":null,\"showMMOTerms\":null,\"mmoVacateDate\":null,\"mmoPaymentsIncluded\":null,\"mmoPaymentAmount1\":null,\"mmoPaymentDate1\":null,\"mmoRelocationPayments\":null,\"mmoWaiverOfClaims\":null,\"noticeIsRentOnly\":null,\"noticeNotes\":null,\"noticeDays\":null,\"noticeResult\":null,\"noticeDateSpecifiedToVacate\":null,\"mutualTerminationAgreementT\":null,\"secondCauseOfAction\":null,\"includeSecondCauseOfAction\":null,\"secondCauseOfActionType\":null,\"secondCauseNoticeServiceDate\":null,\"amountDemandedInNotice\":6461.00000000,\"dailyRentDamagesBegin\":\"2025-09-06T00:00:00Z\",\"commRentAcceptedAfterNotice\":null,\"noticeDaysAndAmounts\":null,\"secondCauseNoticeDaysPerform\":null,\"secondCauseNoticeDaysVacate\":null,\"secondCauseNoticeExhibitNum\":null,\"noticeDaysToPayOrPerform\":3,\"noticeDaysToVacate\":30,\"employmentTerminationDate\":null,\"causeOfAction\":null,\"mMOSignedOn\":null,\"noticeToCorrectServedPrior\":null,\"commercialRentStillOwing\":6461.00000000,\"ourServerToServeTheNotice\":null,\"attorneyNoticeServiceTaskList\":null,\"sendNTCToClientToServe\":null,\"sendNTCToClientToReview\":null,\"noticeSubmissionAndService\":null,\"billNTC\":null,\"attorneyFeesNTC_1\":null,\"billResidentialNonmonetary\":null,\"billCommercialNonmonetary\":null,\"uDBaseFeeResidentialNonmo\":null,\"uDBaseFeeCommercialNonmon\":null,\"billForMMOLetterContract\":null,\"attorneyFeesLetterMMOCo\":null,\"bILLING\":null,\"billForNoticePrepOnly\":null,\"attorneyFeesNoticeOnly\":null,\"billForNPReviewAndPrepOnly\":null,\"attorneyFeesNonpaymentRevi\":null,\"billForTenantBuyOutAgreementOnly\":null,\"attorneyFeesTenantBuyOut\":null,\"billForServiceOfNotice\":null,\"costsServiceOfNotice\":null,\"isThisACaseTakeover\":null,\"caseTakeoverAdditionalFee\":null,\"typeOfTenancy\":null,\"emailProcessServerRequestingPhotoOfPosting\":null,\"operativeNotice\":{\"id\":492890225,\"orgID\":9227,\"projectID\":15974631,\"filename\":\"S. Whelan Proof of Service.pdf\",\"uploadDate\":\"2025-11-04T20:41:38.54Z\",\"templateID\":null,\"templateName\":null,\"reportFusionID\":null,\"reportFusionName\":null,\"contractID\":null,\"canEditInPlace\":true,\"lockedByUserID\":null,\"lockedTime\":null,\"lockExpirationTime\":null,\"lockedByUserFullName\":null,\"isPending\":false,\"isProtected\":false,\"isProtectedPlaceholder\":false,\"contract\":null,\"antivirusScanResult\":[],\"docKey\":\"26a2320e/Ocr-c6614e8966514338ab80ebb9f9c28912.Pdf\"},\"areThereNotesForTheReview\":null,\"noticePrepperNotes\":null,\"sendNTPToCLIENTTOSERVE\":null,\"sendNTPToClientToReview\":null,\"sendNTQToCLIENTTOSERVE\":null,\"sendNTQToClientToReview\":null,\"sendNTVToCLIENTTOSERVE\":null,\"sendNTVToClientToReview\":null,\"sendNTTToCLIENTTOSERVE\":null,\"sendNTTToClientToReview\":null,\"sendMMOToCLIENTTOSIGN\":null}'", "headers": { - "Date": "Thu, 06 Nov 2025 03:27:50 GMT", + "Date": "Fri, 07 Nov 2025 05:37:04 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Connection": "keep-alive", @@ -146,16 +146,16 @@ "ratelimit-remaining": "9;r=3300;w=60;c=Customer Temp", "content-security-policy": "default-src 'self';child-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://app.vinesign.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.amazonaws.com https://app.pendo.io https://feedback.us.pendo.io docs.google.com https://feedback.filevine.com *.newrelic.com *.filev.io *.flvn.io filev.io flvn.io 'self';connect-src *.filevinedev.com *.filevineapp.com *.filevine.ca *.filevine.com *.filevinegov.com *.fvauth.com https://app.vinesign.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.amazonaws.com *.nr-data.net *.pendo.io *.pdftron.com *.typeform.com *.newrelic.com https://app.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://localhost:8080 *.filev.io *.flvn.io filev.io flvn.io 'self' blob: wss:;font-src *.bootstrapcdn.com fonts.gstatic.com *.typekit.net *.typeform.com 'self' data: blob:;frame-src *;frame-ancestors https://*.filevineapp.com https://app.pendo.io 'self';img-src *.typekit.net *.typeform.com https://app.pendo.io https://cdn.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-globalproducts-prod-us-logos.s3.us-west-2.amazonaws.com https://us.fv-globalproducts-logos.prod.filevine.com https://fv-prod-us-shard-h-fv-internal-image.s3.amazonaws.com https://fv-prod-us-shard-h-fv-internal-image.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.filev.io *.flvn.io filev.io flvn.io *.kaywa.com www.googletagmanager.com 'self' data: blob: cid:;manifest-src 'self';media-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://us-shard-h-discussions.filevineapp.com *.filev.io *.flvn.io filev.io flvn.io 'self';object-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com *.filev.io *.flvn.io filev.io flvn.io 'self';script-src *.bootstrapcdn.com *.typekit.net *.typeform.com *.newrelic.com *.nr-data.net https://app.pendo.io https://cdn.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://duuxdetkhlwyv.cloudfront.net https://code.jquery.com https://localhost:8080 https://www.googletagmanager.com 'unsafe-inline' 'unsafe-eval' 'self' blob:;style-src *.bootstrapcdn.com fonts.googleapis.com *.typekit.net *.typeform.com https://app.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://duuxdetkhlwyv.cloudfront.net https://cdn.pendo.io https://data.pendo.io 'unsafe-inline' 'self';worker-src 'self' blob: 'unsafe-inline'", "x-filevine-api-version": "3.3487.15.0", - "x-fv-correlation-id": "734e7dcd1fb947e18b7e2872ae07b0bd", + "x-fv-correlation-id": "802e4cb7c2814f5ba0faed65142cf10b", "x-aspnet-version": "4.0.30319", "x-powered-by": "ASP.NET", "x-content-type-options": "nosniff", "x-frame-option": "SAMEORIGIN", "x-xss-protection": "1; mode=block", - "x-fv-gateway-correlation-id": "734e7dcd1fb947e18b7e2872ae07b0bd", + "x-fv-gateway-correlation-id": "802e4cb7c2814f5ba0faed65142cf10b", "cf-cache-status": "DYNAMIC", "Content-Encoding": "gzip", - "CF-RAY": "99a17f540b887582-SEA", + "CF-RAY": "99aa7a005dbb75d0-SEA", "alt-svc": "h3=\":443\"; ma=86400" } } diff --git a/examples/project_tasks.json b/examples/project_tasks.json index c16249d..dd23513 100644 --- a/examples/project_tasks.json +++ b/examples/project_tasks.json @@ -3,7 +3,7 @@ "url": "https://api.filevineapp.com/fv-app/v2/Projects/15974631/tasks", "headers": { "Accept": "application/json", - "Authorization": "Bearer eyJhbGciOiJSUzUxMiIsImtpZCI6Ijg2NjRFMkY0MDNCQjIxMzk2MzQ4NUFDOEI0MzVGMEJBOTgxNTBFN0RSUzUxMiIsInR5cCI6ImF0K2p3dCIsIng1dCI6ImhtVGk5QU83SVRsalNGckl0RFh3dXBnVkRuMCJ9.eyJuYmYiOjE3NjIzOTk2NzAsImV4cCI6MTc2MjQwMTQ3MCwiaXNzIjoiaHR0cHM6Ly9pZGVudGl0eS5maWxldmluZS5jb20iLCJhdWQiOlsiZmlsZXZpbmUudjIuYXBpIiwiZnYuYXBpLmdhdGV3YXkiLCJmdi5hdXRoIl0sImNsaWVudF9pZCI6IjRGMTg3MzhDLTEwN0EtNEI4Mi1CRkFDLTMwOEYxQjZBNjI2QSIsInN1YiI6ImY3MDQ4NGZmLTQ5MjItNDliMy05MWFkLTE2YjA5Mjk5MGIzMCIsImF1dGhfdGltZSI6MTc2MjM5OTY3MCwiaWRwIjoibG9jYWwiLCJwYXRfaWQiOiJoQll0K013VUJ4bm9xOTNYNVNUdnpyY0xwVFQ2M09HVHhudVcrZGFyZTVJPSIsInBhdF9uYW1lIjoiQnJ5Y2UgQ292ZXJ0IiwicGF0X3ZlcnNpb24iOiIxIiwidGVuYW50X2ZybiI6ImZybjpmaWxldmluZTp1cy1wcm9kOmZpbGV2aW5lLWFwcDo6OnRlbmFudFxcMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwidGVuYW50X2lkIjoiMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwianRpIjoiNDM2MDk4MEVBQ0VGRTM0REEwMTJBNjJDOEFFRDNGQzEiLCJpYXQiOjE3NjIzOTk2NzAsInNjb3BlIjpbImVtYWlsIiwiZmlsZXZpbmUudjIuYXBpLioiLCJmdi5hcGkuZ2F0ZXdheS5hY2Nlc3MiLCJmdi5hdXRoLnRlbmFudC5yZWFkIiwib3BlbmlkIiwidGVuYW50Il0sImFtciI6WyJwZXJzb25hbF9hY2Nlc3NfdG9rZW4iXX0.oZLrCA0DWibl3Fg63VyxrDC1Db_EFIHaEJktekbyaqxn0IJQmOZUlkEpuyI1f1KmT0uPciJXODT_hcDVu1ntzzCdhCwV-b45WVsmbSAzLHp1NGMpKRhTK61rMxbSP0jpa7F79kNr62AhmDWo5Tl4qprops8eK9jVhSkLwCGKgLea0Kk3JZJFb8OykKVkidu02uw2UAVM8Njpl6fi9R4p3N3jw-dzLpeF-IDpYB2km1qsKF9NY-dMmKtIojSm6c0Auh4Ls97CBjjY4Na9a9NhUACig4JWwHflIwzcuhXOeYZM_rKevdiFi0CR5dKDbBRCbYhq5auj0XuWboko4p6XIw", + "Authorization": "Bearer eyJhbGciOiJSUzUxMiIsImtpZCI6Ijk5MDg4NENGRTRCRTgyQzU4QzA0MDJBQjc5MkE2Rjc5NkI5MUQ2MTBSUzUxMiIsInR5cCI6ImF0K2p3dCIsIng1dCI6Im1RaUV6LVMtZ3NXTUJBS3JlU3B2ZVd1UjFoQSJ9.eyJuYmYiOjE3NjI0OTM4MjQsImV4cCI6MTc2MjQ5NTYyNCwiaXNzIjoiaHR0cHM6Ly9pZGVudGl0eS5maWxldmluZS5jb20iLCJhdWQiOlsiZmlsZXZpbmUudjIuYXBpIiwiZnYuYXBpLmdhdGV3YXkiLCJmdi5hdXRoIl0sImNsaWVudF9pZCI6IjRGMTg3MzhDLTEwN0EtNEI4Mi1CRkFDLTMwOEYxQjZBNjI2QSIsInN1YiI6ImY3MDQ4NGZmLTQ5MjItNDliMy05MWFkLTE2YjA5Mjk5MGIzMCIsImF1dGhfdGltZSI6MTc2MjQ5MzgyNCwiaWRwIjoibG9jYWwiLCJwYXRfaWQiOiJoQll0K013VUJ4bm9xOTNYNVNUdnpyY0xwVFQ2M09HVHhudVcrZGFyZTVJPSIsInBhdF9uYW1lIjoiQnJ5Y2UgQ292ZXJ0IiwicGF0X3ZlcnNpb24iOiIxIiwidGVuYW50X2ZybiI6ImZybjpmaWxldmluZTp1cy1wcm9kOmZpbGV2aW5lLWFwcDo6OnRlbmFudFxcMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwidGVuYW50X2lkIjoiMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwianRpIjoiRkI1N0VFNkVEOUQwNUM5NkM3NEM0NjVEODZGRDAwRDEiLCJpYXQiOjE3NjI0OTM4MjQsInNjb3BlIjpbImVtYWlsIiwiZmlsZXZpbmUudjIuYXBpLioiLCJmdi5hcGkuZ2F0ZXdheS5hY2Nlc3MiLCJmdi5hdXRoLnRlbmFudC5yZWFkIiwib3BlbmlkIiwidGVuYW50Il0sImFtciI6WyJwZXJzb25hbF9hY2Nlc3NfdG9rZW4iXX0.StTGrl9jSpbQX4ZhP4t6EY6dBKLfYwTp2uJ6_uU6Uo7y3EX9kas7qt90giCWfa37SMpMYJUfhQ8bp51kPRdLGEWw0sPAtSDds2pO7ueXgUEsw0iwkTTFNnmLEbABuRBB2HyVlsgshiL_zsklFWmEN36ZWIHvOE3JE1a-TbX3JqN7ffkZKY2mQFDdWt4jpQbqugtMxHXF52ciNyCgOnXDFEq2rsCZ4MSTJeWlZPUlIWdGjzqbZf8znX7Xg6wk2mUEFyUMsg0kZCmVx-OkzClrTIQgTjlqtcpfOZNKgYI76d8qPpyp-Xc9XJja0_05nxCluGnGsVPNozqrTbhmJGC1Dw", "x-fv-orgid": "9227", "x-fv-userid": "100510" }, @@ -672,7 +672,7 @@ }, "xxx": "b'{\"count\":12,\"offset\":0,\"limit\":50,\"hasMore\":false,\"requestedFields\":\"*\",\"items\":[{\"noteId\":{\"native\":395037670,\"partner\":null},\"typeTag\":\"task\",\"targetDate\":\"2025-11-05T00:00:00Z\",\"isUnread\":false,\"isCompleted\":false,\"body\":\"Log successful and unsuccessful service attempts. Track down if missing.\\\\n\\\\n#ServiceDaily-LogAttempts\",\"createdAt\":\"2025-11-05T07:49:14.483Z\",\"isEdited\":false,\"allowEditing\":false,\"lastActivity\":\"2025-11-05T07:49:14.483Z\",\"authorId\":{\"native\":1,\"partner\":null},\"assigneeId\":{\"native\":100664,\"partner\":null},\"projectId\":{\"native\":15974631,\"partner\":null},\"commentCount\":0,\"isLoaded\":false,\"documents\":[],\"canBeShared\":true,\"shares\":[{\"native\":97781,\"partner\":null}],\"isPinnedToProject\":false,\"isPinnedToFeed\":false,\"tags\":[],\"links\":{\"assignee\":\"/users/100664\",\"self\":\"/notes/395037670\",\"author\":\"/users/1\",\"comments\":\"/notes/395037670/comments\",\"completer\":\"/users/0\",\"copiedFrom\":\"/notes/0\",\"copierUser\":\"/users/0\",\"documents\":\"/notes/395037670/documents\",\"project\":\"/projects/15974631\",\"shares\":\"/notes/395037670/shares\"}},{\"noteId\":{\"native\":395012863,\"partner\":null},\"typeTag\":\"task\",\"targetDate\":\"2025-11-04T00:00:00Z\",\"isUnread\":false,\"isCompleted\":false,\"body\":\"Change Phase to Service of Process\",\"createdAt\":\"2025-11-04T20:59:40.943Z\",\"isEdited\":false,\"allowEditing\":false,\"lastActivity\":\"2025-11-04T20:59:40.943Z\",\"authorId\":{\"native\":1,\"partner\":null},\"assigneeId\":{\"native\":100664,\"partner\":null},\"projectId\":{\"native\":15974631,\"partner\":null},\"commentCount\":0,\"isLoaded\":false,\"documents\":[],\"canBeShared\":true,\"shares\":[{\"native\":97781,\"partner\":null}],\"isPinnedToProject\":false,\"isPinnedToFeed\":false,\"tags\":[],\"links\":{\"assignee\":\"/users/100664\",\"self\":\"/notes/395012863\",\"author\":\"/users/1\",\"comments\":\"/notes/395012863/comments\",\"completer\":\"/users/0\",\"copiedFrom\":\"/notes/0\",\"copierUser\":\"/users/0\",\"documents\":\"/notes/395012863/documents\",\"project\":\"/projects/15974631\",\"shares\":\"/notes/395012863/shares\"}},{\"noteId\":{\"native\":395012862,\"partner\":null},\"typeTag\":\"task\",\"targetDate\":\"2025-11-04T00:00:00Z\",\"isUnread\":false,\"isCompleted\":false,\"body\":\"Email complaint to rent board (if applicable)\\\\nEmail Client Update.\",\"createdAt\":\"2025-11-04T20:59:40.787Z\",\"isEdited\":false,\"allowEditing\":false,\"lastActivity\":\"2025-11-04T20:59:40.787Z\",\"authorId\":{\"native\":1,\"partner\":null},\"assigneeId\":{\"native\":100664,\"partner\":null},\"projectId\":{\"native\":15974631,\"partner\":null},\"commentCount\":0,\"isLoaded\":false,\"documents\":[],\"canBeShared\":true,\"shares\":[{\"native\":97781,\"partner\":null}],\"isPinnedToProject\":false,\"isPinnedToFeed\":false,\"tags\":[],\"links\":{\"assignee\":\"/users/100664\",\"self\":\"/notes/395012862\",\"author\":\"/users/1\",\"comments\":\"/notes/395012862/comments\",\"completer\":\"/users/0\",\"copiedFrom\":\"/notes/0\",\"copierUser\":\"/users/0\",\"documents\":\"/notes/395012862/documents\",\"project\":\"/projects/15974631\",\"shares\":\"/notes/395012862/shares\"}},{\"noteId\":{\"native\":395012859,\"partner\":null},\"typeTag\":\"task\",\"targetDate\":\"2025-11-04T00:00:00Z\",\"isUnread\":false,\"isCompleted\":false,\"body\":\"Case Received from Court.\\\\nUpload docs. into matter, input case number and case filed date.\\\\nInput OSC information if one is set.\\\\n\\\\n#CasePrepDaily-CxReceived\",\"createdAt\":\"2025-11-04T20:59:40.59Z\",\"isEdited\":false,\"allowEditing\":false,\"lastActivity\":\"2025-11-04T20:59:40.59Z\",\"authorId\":{\"native\":1,\"partner\":null},\"assigneeId\":{\"native\":100664,\"partner\":null},\"projectId\":{\"native\":15974631,\"partner\":null},\"commentCount\":0,\"isLoaded\":false,\"documents\":[],\"canBeShared\":true,\"shares\":[{\"native\":97781,\"partner\":null}],\"isPinnedToProject\":false,\"isPinnedToFeed\":false,\"tags\":[],\"links\":{\"assignee\":\"/users/100664\",\"self\":\"/notes/395012859\",\"author\":\"/users/1\",\"comments\":\"/notes/395012859/comments\",\"completer\":\"/users/0\",\"copiedFrom\":\"/notes/0\",\"copierUser\":\"/users/0\",\"documents\":\"/notes/395012859/documents\",\"project\":\"/projects/15974631\",\"shares\":\"/notes/395012859/shares\"}},{\"noteId\":{\"native\":395012820,\"partner\":null},\"typeTag\":\"task\",\"targetDate\":\"2025-11-04T00:00:00Z\",\"isUnread\":false,\"isCompleted\":false,\"body\":\"Send Case Out for Service\\\\n\\\\n#ServiceDaily-SendCxout\",\"createdAt\":\"2025-11-04T20:59:22.97Z\",\"isEdited\":false,\"allowEditing\":false,\"lastActivity\":\"2025-11-04T20:59:22.97Z\",\"authorId\":{\"native\":1,\"partner\":null},\"assigneeId\":{\"native\":100664,\"partner\":null},\"projectId\":{\"native\":15974631,\"partner\":null},\"commentCount\":0,\"isLoaded\":false,\"documents\":[],\"canBeShared\":true,\"shares\":[{\"native\":97781,\"partner\":null}],\"isPinnedToProject\":false,\"isPinnedToFeed\":false,\"tags\":[],\"links\":{\"assignee\":\"/users/100664\",\"self\":\"/notes/395012820\",\"author\":\"/users/1\",\"comments\":\"/notes/395012820/comments\",\"completer\":\"/users/0\",\"copiedFrom\":\"/notes/0\",\"copierUser\":\"/users/0\",\"documents\":\"/notes/395012820/documents\",\"project\":\"/projects/15974631\",\"shares\":\"/notes/395012820/shares\"}},{\"noteId\":{\"native\":395012818,\"partner\":null},\"typeTag\":\"task\",\"targetDate\":\"2025-11-04T00:00:00Z\",\"isUnread\":false,\"isCompleted\":false,\"body\":\"Assigned to process server and printed service record.\",\"createdAt\":\"2025-11-04T20:59:22.823Z\",\"isEdited\":false,\"allowEditing\":false,\"lastActivity\":\"2025-11-04T20:59:22.823Z\",\"authorId\":{\"native\":1,\"partner\":null},\"assigneeId\":{\"native\":100664,\"partner\":null},\"projectId\":{\"native\":15974631,\"partner\":null},\"commentCount\":0,\"isLoaded\":false,\"documents\":[],\"canBeShared\":true,\"shares\":[{\"native\":97781,\"partner\":null}],\"isPinnedToProject\":false,\"isPinnedToFeed\":false,\"tags\":[],\"links\":{\"assignee\":\"/users/100664\",\"self\":\"/notes/395012818\",\"author\":\"/users/1\",\"comments\":\"/notes/395012818/comments\",\"completer\":\"/users/0\",\"copiedFrom\":\"/notes/0\",\"copierUser\":\"/users/0\",\"documents\":\"/notes/395012818/documents\",\"project\":\"/projects/15974631\",\"shares\":\"/notes/395012818/shares\"}},{\"noteId\":{\"native\":395012817,\"partner\":null},\"typeTag\":\"task\",\"targetDate\":\"2025-11-04T00:00:00Z\",\"isUnread\":false,\"isCompleted\":false,\"body\":\"Print/make copies of the case for each defendant to be served.\\\\nSend email to client re service attempts starting.\",\"createdAt\":\"2025-11-04T20:59:22.64Z\",\"isEdited\":false,\"allowEditing\":false,\"lastActivity\":\"2025-11-04T20:59:22.64Z\",\"authorId\":{\"native\":1,\"partner\":null},\"assigneeId\":{\"native\":100664,\"partner\":null},\"projectId\":{\"native\":15974631,\"partner\":null},\"commentCount\":0,\"isLoaded\":false,\"documents\":[],\"canBeShared\":true,\"shares\":[{\"native\":97781,\"partner\":null}],\"isPinnedToProject\":false,\"isPinnedToFeed\":false,\"tags\":[],\"links\":{\"assignee\":\"/users/100664\",\"self\":\"/notes/395012817\",\"author\":\"/users/1\",\"comments\":\"/notes/395012817/comments\",\"completer\":\"/users/0\",\"copiedFrom\":\"/notes/0\",\"copierUser\":\"/users/0\",\"documents\":\"/notes/395012817/documents\",\"project\":\"/projects/15974631\",\"shares\":\"/notes/395012817/shares\"}},{\"noteId\":{\"native\":395012816,\"partner\":null},\"typeTag\":\"task\",\"targetDate\":\"2025-11-04T00:00:00Z\",\"isUnread\":false,\"isCompleted\":false,\"body\":\"Case Ready to Be Served\\\\n\\\\n#ServiceDaily-CxReady4Service\",\"createdAt\":\"2025-11-04T20:59:22.497Z\",\"isEdited\":false,\"allowEditing\":false,\"lastActivity\":\"2025-11-04T20:59:22.497Z\",\"authorId\":{\"native\":1,\"partner\":null},\"assigneeId\":{\"native\":100664,\"partner\":null},\"projectId\":{\"native\":15974631,\"partner\":null},\"commentCount\":0,\"isLoaded\":false,\"documents\":[],\"canBeShared\":true,\"shares\":[{\"native\":97781,\"partner\":null}],\"isPinnedToProject\":false,\"isPinnedToFeed\":false,\"tags\":[],\"links\":{\"assignee\":\"/users/100664\",\"self\":\"/notes/395012816\",\"author\":\"/users/1\",\"comments\":\"/notes/395012816/comments\",\"completer\":\"/users/0\",\"copiedFrom\":\"/notes/0\",\"copierUser\":\"/users/0\",\"documents\":\"/notes/395012816/documents\",\"project\":\"/projects/15974631\",\"shares\":\"/notes/395012816/shares\"}},{\"noteId\":{\"native\":395012646,\"partner\":null},\"typeTag\":\"task\",\"targetDate\":\"2025-11-04T00:00:00Z\",\"isUnread\":false,\"isCompleted\":true,\"completedDate\":\"2025-11-04T20:57:53.517Z\",\"body\":\"Once all questions are answered or no additional questions.\\\\nChange Phase to \\\\\"Preparing and Filing UD\\\\\"\",\"createdAt\":\"2025-11-04T20:57:52.527Z\",\"isEdited\":false,\"allowEditing\":false,\"lastActivity\":\"2025-11-04T20:57:53.517Z\",\"authorId\":{\"native\":1,\"partner\":null},\"assigneeId\":{\"native\":100664,\"partner\":null},\"completerId\":{\"native\":100664,\"partner\":null},\"projectId\":{\"native\":15974631,\"partner\":null},\"commentCount\":0,\"isLoaded\":false,\"documents\":[],\"canBeShared\":true,\"shares\":[{\"native\":97781,\"partner\":null}],\"isPinnedToProject\":false,\"isPinnedToFeed\":false,\"tags\":[],\"links\":{\"assignee\":\"/users/100664\",\"self\":\"/notes/395012646\",\"author\":\"/users/1\",\"comments\":\"/notes/395012646/comments\",\"completer\":\"/users/100664\",\"copiedFrom\":\"/notes/0\",\"copierUser\":\"/users/0\",\"documents\":\"/notes/395012646/documents\",\"project\":\"/projects/15974631\",\"shares\":\"/notes/395012646/shares\"}},{\"noteId\":{\"native\":395007904,\"partner\":null},\"typeTag\":\"task\",\"targetDate\":\"2025-11-04T00:00:00Z\",\"isUnread\":false,\"isCompleted\":true,\"completedDate\":\"2025-11-04T20:57:51.277Z\",\"body\":\"Send any additional questions or Intake forms to client to client.\\\\nInput their answers once they reply, follow up if no response.\\\\n\\\\n#CasePrepXWK-ClientFU\",\"createdAt\":\"2025-11-04T20:20:59.063Z\",\"isEdited\":false,\"allowEditing\":false,\"lastActivity\":\"2025-11-04T20:57:51.277Z\",\"authorId\":{\"native\":1,\"partner\":null},\"assigneeId\":{\"native\":100664,\"partner\":null},\"completerId\":{\"native\":100664,\"partner\":null},\"projectId\":{\"native\":15974631,\"partner\":null},\"commentCount\":0,\"isLoaded\":false,\"documents\":[],\"canBeShared\":true,\"shares\":[{\"native\":97781,\"partner\":null}],\"isPinnedToProject\":false,\"isPinnedToFeed\":false,\"tags\":[],\"links\":{\"assignee\":\"/users/100664\",\"self\":\"/notes/395007904\",\"author\":\"/users/1\",\"comments\":\"/notes/395007904/comments\",\"completer\":\"/users/100664\",\"copiedFrom\":\"/notes/0\",\"copierUser\":\"/users/0\",\"documents\":\"/notes/395007904/documents\",\"project\":\"/projects/15974631\",\"shares\":\"/notes/395007904/shares\"}},{\"noteId\":{\"native\":395007886,\"partner\":null},\"typeTag\":\"task\",\"targetDate\":\"2025-11-04T00:00:00Z\",\"isUnread\":false,\"isCompleted\":true,\"completedDate\":\"2025-11-04T20:20:57.88Z\",\"body\":\"Review Intake, Lease and Notice. Input all case information\\\\n\\\\n\\\\n#CasePrepDaily-Review\",\"createdAt\":\"2025-11-04T20:20:51.99Z\",\"isEdited\":false,\"allowEditing\":false,\"lastActivity\":\"2025-11-04T20:20:57.88Z\",\"authorId\":{\"native\":1,\"partner\":null},\"assigneeId\":{\"native\":100664,\"partner\":null},\"completerId\":{\"native\":100664,\"partner\":null},\"projectId\":{\"native\":15974631,\"partner\":null},\"commentCount\":0,\"isLoaded\":false,\"documents\":[],\"canBeShared\":true,\"shares\":[{\"native\":97781,\"partner\":null}],\"isPinnedToProject\":false,\"isPinnedToFeed\":false,\"tags\":[],\"links\":{\"assignee\":\"/users/100664\",\"self\":\"/notes/395007886\",\"author\":\"/users/1\",\"comments\":\"/notes/395007886/comments\",\"completer\":\"/users/100664\",\"copiedFrom\":\"/notes/0\",\"copierUser\":\"/users/0\",\"documents\":\"/notes/395007886/documents\",\"project\":\"/projects/15974631\",\"shares\":\"/notes/395007886/shares\"}},{\"noteId\":{\"native\":395007802,\"partner\":null},\"typeTag\":\"task\",\"targetDate\":\"2025-11-04T00:00:00Z\",\"isUnread\":false,\"isCompleted\":true,\"completedDate\":\"2025-11-04T20:20:48.183Z\",\"body\":\"Assign Primary (RNP) or Attorney (Attorney Review) and move to Review.\\\\n\\\\n\\\\n#AttnyRevDaily-Assign #CasePrepDaily-Assign\",\"createdAt\":\"2025-11-04T20:20:19.15Z\",\"isEdited\":false,\"allowEditing\":false,\"lastActivity\":\"2025-11-04T20:20:48.183Z\",\"authorId\":{\"native\":1,\"partner\":null},\"assigneeId\":{\"native\":100664,\"partner\":null},\"completerId\":{\"native\":100664,\"partner\":null},\"projectId\":{\"native\":15974631,\"partner\":null},\"commentCount\":0,\"isLoaded\":false,\"documents\":[],\"canBeShared\":true,\"shares\":[{\"native\":97781,\"partner\":null}],\"isPinnedToProject\":false,\"isPinnedToFeed\":false,\"tags\":[],\"links\":{\"assignee\":\"/users/100664\",\"self\":\"/notes/395007802\",\"author\":\"/users/1\",\"comments\":\"/notes/395007802/comments\",\"completer\":\"/users/100664\",\"copiedFrom\":\"/notes/0\",\"copierUser\":\"/users/0\",\"documents\":\"/notes/395007802/documents\",\"project\":\"/projects/15974631\",\"shares\":\"/notes/395007802/shares\"}}],\"links\":{\"self\":\"/tasks?taskFilter=&createdStart=&createdEnd=&taskTargetStart=&taskTargetEnd=&hashtags=&offset=0&limit=50&requestedFields=*\",\"prev\":null,\"next\":null}}'", "headers": { - "Date": "Thu, 06 Nov 2025 03:27:51 GMT", + "Date": "Fri, 07 Nov 2025 05:37:05 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Connection": "keep-alive", @@ -685,16 +685,16 @@ "ratelimit-remaining": "9;r=3300;w=60;c=Customer Temp", "content-security-policy": "default-src 'self';child-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://app.vinesign.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.amazonaws.com https://app.pendo.io https://feedback.us.pendo.io docs.google.com https://feedback.filevine.com *.newrelic.com *.filev.io *.flvn.io filev.io flvn.io 'self';connect-src *.filevinedev.com *.filevineapp.com *.filevine.ca *.filevine.com *.filevinegov.com *.fvauth.com https://app.vinesign.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.amazonaws.com *.nr-data.net *.pendo.io *.pdftron.com *.typeform.com *.newrelic.com https://app.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://localhost:8080 *.filev.io *.flvn.io filev.io flvn.io 'self' blob: wss:;font-src *.bootstrapcdn.com fonts.gstatic.com *.typekit.net *.typeform.com 'self' data: blob:;frame-src *;frame-ancestors https://*.filevineapp.com https://app.pendo.io 'self';img-src *.typekit.net *.typeform.com https://app.pendo.io https://cdn.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-globalproducts-prod-us-logos.s3.us-west-2.amazonaws.com https://us.fv-globalproducts-logos.prod.filevine.com https://fv-prod-us-shard-h-fv-internal-image.s3.amazonaws.com https://fv-prod-us-shard-h-fv-internal-image.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.filev.io *.flvn.io filev.io flvn.io *.kaywa.com www.googletagmanager.com 'self' data: blob: cid:;manifest-src 'self';media-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://us-shard-h-discussions.filevineapp.com *.filev.io *.flvn.io filev.io flvn.io 'self';object-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com *.filev.io *.flvn.io filev.io flvn.io 'self';script-src *.bootstrapcdn.com *.typekit.net *.typeform.com *.newrelic.com *.nr-data.net https://app.pendo.io https://cdn.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://duuxdetkhlwyv.cloudfront.net https://code.jquery.com https://localhost:8080 https://www.googletagmanager.com 'unsafe-inline' 'unsafe-eval' 'self' blob:;style-src *.bootstrapcdn.com fonts.googleapis.com *.typekit.net *.typeform.com https://app.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://duuxdetkhlwyv.cloudfront.net https://cdn.pendo.io https://data.pendo.io 'unsafe-inline' 'self';worker-src 'self' blob: 'unsafe-inline'", "x-filevine-api-version": "3.3487.15.0", - "x-fv-correlation-id": "9cc8f7af0ed642c68c0bc85508aa03d4", + "x-fv-correlation-id": "a43524cadd20421d9a7247635c5c8ac6", "x-aspnet-version": "4.0.30319", "x-powered-by": "ASP.NET", "x-content-type-options": "nosniff", "x-frame-option": "SAMEORIGIN", "x-xss-protection": "1; mode=block", - "x-fv-gateway-correlation-id": "9cc8f7af0ed642c68c0bc85508aa03d4", + "x-fv-gateway-correlation-id": "a43524cadd20421d9a7247635c5c8ac6", "cf-cache-status": "DYNAMIC", "Content-Encoding": "gzip", - "CF-RAY": "99a17f57fb28ed00-SEA", + "CF-RAY": "99aa7a04ce40df17-SEA", "alt-svc": "h3=\":443\"; ma=86400" } } diff --git a/examples/project_team.json b/examples/project_team.json new file mode 100644 index 0000000..87dc3fc --- /dev/null +++ b/examples/project_team.json @@ -0,0 +1,1377 @@ +{ + "sample_request": { + "url": "https://api.filevineapp.com/fv-app/v2/Projects/15914808/team", + "headers": { + "Accept": "application/json", + "Authorization": "Bearer eyJhbGciOiJSUzUxMiIsImtpZCI6Ijk5MDg4NENGRTRCRTgyQzU4QzA0MDJBQjc5MkE2Rjc5NkI5MUQ2MTBSUzUxMiIsInR5cCI6ImF0K2p3dCIsIng1dCI6Im1RaUV6LVMtZ3NXTUJBS3JlU3B2ZVd1UjFoQSJ9.eyJuYmYiOjE3NjI0OTM4MjUsImV4cCI6MTc2MjQ5NTYyNSwiaXNzIjoiaHR0cHM6Ly9pZGVudGl0eS5maWxldmluZS5jb20iLCJhdWQiOlsiZmlsZXZpbmUudjIuYXBpIiwiZnYuYXBpLmdhdGV3YXkiLCJmdi5hdXRoIl0sImNsaWVudF9pZCI6IjRGMTg3MzhDLTEwN0EtNEI4Mi1CRkFDLTMwOEYxQjZBNjI2QSIsInN1YiI6ImY3MDQ4NGZmLTQ5MjItNDliMy05MWFkLTE2YjA5Mjk5MGIzMCIsImF1dGhfdGltZSI6MTc2MjQ5MzgyNSwiaWRwIjoibG9jYWwiLCJwYXRfaWQiOiJoQll0K013VUJ4bm9xOTNYNVNUdnpyY0xwVFQ2M09HVHhudVcrZGFyZTVJPSIsInBhdF9uYW1lIjoiQnJ5Y2UgQ292ZXJ0IiwicGF0X3ZlcnNpb24iOiIxIiwidGVuYW50X2ZybiI6ImZybjpmaWxldmluZTp1cy1wcm9kOmZpbGV2aW5lLWFwcDo6OnRlbmFudFxcMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwidGVuYW50X2lkIjoiMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwianRpIjoiN0JFRkQ2NTk2QkFENEEyRkU2REIxMTEzMjc2RUI1RDciLCJpYXQiOjE3NjI0OTM4MjUsInNjb3BlIjpbImVtYWlsIiwiZmlsZXZpbmUudjIuYXBpLioiLCJmdi5hcGkuZ2F0ZXdheS5hY2Nlc3MiLCJmdi5hdXRoLnRlbmFudC5yZWFkIiwib3BlbmlkIiwidGVuYW50Il0sImFtciI6WyJwZXJzb25hbF9hY2Nlc3NfdG9rZW4iXX0.MP5Sz4xXJ1c6ZJ_vJvHiUAfp_hj4zR-EHRzbZ3fJZgBuBmYdQ_3f-YX07tdkbE7GSsdifgosVBM7FMGbwAQD8EkQ2U-kVbe-IiSkPXoUC9WpvTOzk4pq0EzgBDKYZkFkMn6hxZeVSqlO1sABEg3ZO70lPXjbA-BU3Sn_Z8WUl5QyxjLYgrNk99NbIyLla8iEHjDABQQdeLqruh5cPUn9SF6pHbmnsri97z4sFkgBrH_TiX0vOnwo8lxpvtIlflCkYj69qRrrTLZiiRTg-25yIKwP1FvUUknDd_8IbjGKjSjA3nO3fWNVP8pd9fY62JkNDY673NPP1ZOQwCd5FiKXuw", + "x-fv-orgid": "9227", + "x-fv-userid": "100510" + }, + "params": { + "limit": 1000 + }, + "method": "GET" + }, + "sample_response": { + "status_code": 200, + "json": { + "count": 65, + "offset": 0, + "limit": 1000, + "hasMore": false, + "requestedFields": "*", + "items": [ + { + "userId": { + "native": 94999, + "partner": null + }, + "username": "brianskarbek", + "firstName": "Brian ", + "lastName": "Skarbek", + "email": "brian@toddrothbardlaw.com", + "fullname": "Brian Skarbek", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Defaultf323b49c-49dd-46af-a6e4-64a2f3c0615e.png", + "teamRoles": [], + "teamOrgRoles": [ + { + "orgRoleId": { + "native": 204332, + "partner": null + }, + "name": "Assigned Attorney", + "links": {} + } + ], + "links": {} + }, + { + "userId": { + "native": 95000, + "partner": null + }, + "username": "brittany 35", + "firstName": "Brittany", + "lastName": "Lewis", + "email": "brittanylewis@filevine.com", + "fullname": "Brittany Lewis", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Default7dbfb368-c862-4429-b21c-8ed8c16bf3e3.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 95001, + "partner": null + }, + "username": "erickcornejo2", + "firstName": "Erickcornejo", + "email": "erickcornejo@filevine.com", + "fullname": "Erickcornejo", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Default086cd6e3-2b66-427b-a057-b1b1c52b76e7.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 95003, + "partner": null + }, + "username": "filevine2842", + "firstName": "Filevine", + "lastName": "Integration", + "email": "0bjnuzLLsm264d6@filevine.api", + "fullname": "Filevine Integration", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Default393c1c49-ee0a-46ed-b855-1e7509262401.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 95005, + "partner": null + }, + "username": "filevine2843", + "firstName": "Filevine", + "lastName": "Integration", + "email": "0i24YQVP58mBMUZ@filevine.api", + "fullname": "Filevine Integration", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Defaultb2528ec4-e396-4d12-8b4b-6389ddac2e9e.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 95006, + "partner": null + }, + "username": "toriabrams15", + "firstName": "Toriabrams", + "email": "toriabrams@filevine.com", + "fullname": "Toriabrams", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Defaultb33b6e5b-e9d7-467f-bf4f-b5cbe29d5518.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 95008, + "partner": null + }, + "username": "leaddocket364", + "firstName": "leaddocket", + "lastName": "Integration", + "email": "integrations+9227_leaddocket@filevine.com", + "fullname": "leaddocket Integration", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Default56f23805-2d55-4bf9-ba95-f8d3a4ca5df9.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 95010, + "partner": null + }, + "username": "client29", + "firstName": "Client", + "lastName": "Access", + "email": "access@vineskills.com", + "fullname": "Client Access", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Default5178816e-a92d-4818-846c-99b7b47093e1.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 95011, + "partner": null + }, + "username": "jen60", + "firstName": "Jen", + "lastName": "Rhodes", + "email": "jen@vineskills.com", + "fullname": "Jen Rhodes", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Defaulte0edd285-3c84-4ad9-8251-01bb17a79c71.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 95020, + "partner": null + }, + "username": "tony92", + "firstName": "Tony", + "lastName": "Rhodes", + "email": "tony@migrationskills.com", + "fullname": "Tony Rhodes", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Defaultf3441eb0-cbda-4d7f-9060-7104740c8b04.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 95321, + "partner": null + }, + "username": "sarra", + "firstName": "Sarra", + "lastName": "McDonald", + "email": "sarra@toddrothbardlaw.com", + "fullname": "Sarra McDonald", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Default539fe959-3a23-4d5e-b4f4-400b130db473.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 95322, + "partner": null + }, + "username": "ryan121", + "firstName": "Ryan", + "lastName": "Mayberry", + "email": "Ryan@toddrothbardlaw.com", + "fullname": "Ryan Mayberry", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Defaulteab668ee-26ca-460c-bcb5-3073994597e5.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 95516, + "partner": null + }, + "username": "vinesign132", + "firstName": "Vinesign", + "lastName": "Integration", + "email": "vinesign@filevine.com", + "fullname": "Vinesign Integration", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Defaultf4a92ee7-5337-4cee-86ae-89ae88656972.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 96574, + "partner": null + }, + "username": "jeff68", + "firstName": "Jeff", + "lastName": "Mitchell", + "email": "jeff@migrationskills.com", + "fullname": "Jeff Mitchell", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Default97ac315d-d118-4f81-b5f0-d7fc3b618c77.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 97147, + "partner": null + }, + "username": "client portal597", + "firstName": "Client Portal", + "email": "clientportal@filevine.com", + "fullname": "Client Portal", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Default7dd0f8c8-aad8-4155-abea-368415ca910a.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 97597, + "partner": null + }, + "username": "fvda54", + "firstName": "fvda", + "lastName": "fvda", + "email": "fvda@filevine.com", + "fullname": "fvda fvda", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Defaultd6f61afa-562c-413d-8d17-31ed3802dba5.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 97781, + "partner": null + }, + "username": "amanda129", + "firstName": "Amanda", + "lastName": "Mills", + "email": "amanda@vineskills.com", + "fullname": "Amanda Mills", + "isPrimary": false, + "isAdmin": false, + "level": "Guest", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Default88270a2a-af1f-4cdc-8cc5-552b2d84d701.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 99170, + "partner": null + }, + "username": "suzy7", + "firstName": "Suzy", + "lastName": "Lewis", + "email": "suzy@vineskills.com", + "fullname": "Suzy Lewis", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Default7e6c5e39-8bd7-4d40-a0df-18bc1db3eaff.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 99191, + "partner": null + }, + "username": "workato20", + "firstName": "Workato", + "lastName": "Service Account", + "email": "workato@filevine-cpi-service-accounts.com", + "fullname": "Workato Service Account", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Default2117adcd-6da3-4def-a458-afe9accb5043.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 99522, + "partner": null + }, + "username": "billing7", + "firstName": "Billing", + "email": "Billing@ToddRothbardLaw.com", + "fullname": "Billing", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Defaultc8e6377b-34a4-4c60-acb6-147188b9a48e.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 100081, + "partner": null + }, + "username": "rechelle", + "firstName": "Rechelle", + "lastName": "Romero", + "email": "rechelleromero@filevine.com", + "fullname": "Rechelle Romero", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Defaultcf3c56de-c31b-4e52-98a6-2d4c43233cd8.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 100266, + "partner": null + }, + "username": "lani2", + "firstName": "Lani", + "email": "lani@toddrothbardlaw.com", + "fullname": "Lani", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Defaultad5e2468-d72c-4dd1-aa86-ab9bf7a658fa.png", + "teamRoles": [], + "teamOrgRoles": [ + { + "orgRoleId": { + "native": 204378, + "partner": null + }, + "name": "Secondary Paralegal", + "links": {} + } + ], + "links": {} + }, + { + "userId": { + "native": 100267, + "partner": null + }, + "username": "liz41", + "firstName": "Liz", + "lastName": "Gonzalez", + "email": "liz@toddrothbardlaw.com", + "fullname": "Liz Gonzalez", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Default9c999b31-ef60-40f3-882c-3985087e4ecd.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 100341, + "partner": null + }, + "username": "shayna1", + "firstName": "Shayna", + "lastName": "Leatiota", + "email": "shayna@toddrothbardlaw.com", + "fullname": "Shayna Leatiota", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Default0cfb8c79-0624-4a21-a4ed-791925496b24.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 100370, + "partner": null + }, + "username": "sophia17", + "firstName": "Sophia", + "lastName": "Rogers", + "email": "sophia@toddrothbardlaw.com", + "fullname": "Sophia Rogers", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Defaulte4e952a2-e6a6-4e1e-9f73-15043d76d48d.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 100371, + "partner": null + }, + "username": "rebecca63", + "firstName": "Rebecca", + "lastName": "Hartzler", + "email": "rebecca@toddrothbardlaw.com", + "fullname": "Rebecca Hartzler", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Defaultc18c529a-8faa-48c3-9fa3-c6ba32399c51.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 100372, + "partner": null + }, + "username": "kevin91", + "firstName": "Kevin", + "lastName": "White", + "email": "kevin@toddrothbardlaw.com", + "fullname": "Kevin White", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Defaultd7f1b41d-f93a-4a3d-8bac-32f1bb6f38da.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 100373, + "partner": null + }, + "username": "amber55", + "firstName": "Amber", + "email": "amber@toddrothbardlaw.com", + "fullname": "Amber", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Defaultf9c250d0-d803-4872-ad09-20a9540893ed.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 100374, + "partner": null + }, + "username": "melissa110", + "firstName": "Melissa", + "lastName": "Vincent", + "email": "melissa@toddrothbardlaw.com", + "fullname": "Melissa Vincent", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Default3c88a39e-92e0-4546-9108-32b11b466ed2.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 100375, + "partner": null + }, + "username": "monica57", + "firstName": "Monica", + "lastName": "Alvarez", + "email": "monica@toddrothbardlaw.com", + "fullname": "Monica Alvarez", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Default76ebe70a-5719-40b4-9b69-be88752bbc4c.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 100376, + "partner": null + }, + "username": "stephanie148", + "firstName": "Stephanie", + "lastName": "Gonzalez", + "email": "stephanie@toddrothbardlaw.com", + "fullname": "Stephanie Gonzalez", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Defaultbaefaebd-4cff-4452-b232-01b7cfca573a.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 100377, + "partner": null + }, + "username": "joelle3", + "firstName": "Joelle", + "lastName": "Dingman", + "email": "joelle@toddrothbardlaw.com", + "fullname": "Joelle Dingman", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Default6aa5fd55-1121-431d-a105-6b963e091d7f.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 100378, + "partner": null + }, + "username": "samar", + "firstName": "Samar", + "lastName": "Joseph", + "email": "samar@toddrothbardlaw.com", + "fullname": "Samar Joseph", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Default23e4d203-ef41-4e67-947e-537f6abfd6e3.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 100382, + "partner": null + }, + "username": "jenny40", + "firstName": "Jenny", + "email": "Jenny@ToddRothbardLaw.com", + "fullname": "Jenny", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Default588d7f24-1228-4dec-a8ef-ae438c51cf09.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 100462, + "partner": null + }, + "username": "bryce7", + "firstName": "Bryce", + "lastName": "Covert", + "email": "bryce.covert@gmail.com", + "fullname": "Bryce Covert", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Default515fb569-6c88-473c-b755-5487870c8caa.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 100510, + "partner": null + }, + "username": "brycecovert", + "firstName": "Bryce Covert", + "lastName": "Service Account", + "email": "bryce-covert@filevine-service-accounts.com", + "fullname": "Bryce Covert Service Account", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Defaulta99460fc-90ef-4859-8f6e-d91d2c7c7efa.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 100594, + "partner": null + }, + "username": "jdesai2", + "firstName": "Jdesai", + "email": "jdesai@legalexllc.com", + "fullname": "Jdesai", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Default7e2a5e3e-056e-4314-b7e1-593f48cb0596.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 100595, + "partner": null + }, + "username": "allayah", + "firstName": "Allayah", + "email": "allayah@toddrothbardlaw.com", + "fullname": "Allayah", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Default180e1685-46dd-4c02-93bb-4f99fadd7781.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 100596, + "partner": null + }, + "username": "ariadna", + "firstName": "Ariadna", + "lastName": "Kench", + "email": "ariadna@toddrothbardlaw.com", + "fullname": "Ariadna Kench", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Default27368339-d77e-4b9f-b7a9-697779359fe8.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 100597, + "partner": null + }, + "username": "candice10", + "firstName": "Candice", + "lastName": "McCarty", + "email": "candice@toddrothbardlaw.com", + "fullname": "Candice McCarty", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Default32775755-ba45-42ea-abd2-64339a84a1e3.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 100598, + "partner": null + }, + "username": "chelsea48", + "firstName": "Chelsea", + "lastName": "Cawley", + "email": "chelsea@toddrothbardlaw.com", + "fullname": "Chelsea Cawley", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Default8d67f917-e3c4-4673-8631-568caccca633.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 100599, + "partner": null + }, + "username": "chris119", + "firstName": "Chris", + "lastName": "Cooper", + "email": "chris@toddrothbardlaw.com", + "fullname": "Chris Cooper", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Default9fc80486-9288-4bc4-8cff-40844cac0ce2.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 100600, + "partner": null + }, + "username": "christina60", + "firstName": "Christina", + "lastName": "Dabis", + "email": "christinad@toddrothbardlaw.com", + "fullname": "Christina Dabis", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Defaultdc9e015d-323f-4804-baa0-a15134b9c85a.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 100601, + "partner": null + }, + "username": "davidkanter", + "firstName": "David", + "lastName": "Kanter", + "email": "david@toddrothbardlaw.com", + "fullname": "David Kanter", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Defaultd65b759f-2e17-42e6-b735-00cf05ca70a9.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 100602, + "partner": null + }, + "username": "durim", + "firstName": "Durim", + "lastName": "Choi", + "email": "durim@toddrothbardlaw.com", + "fullname": "Durim Choi", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Default0302b9de-a484-4319-a2f9-ce738d9a0ddb.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 100603, + "partner": null + }, + "username": "dylan24", + "firstName": "Dylan", + "lastName": "McMurray", + "email": "dylan@toddrothbardlaw.com", + "fullname": "Dylan McMurray", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Default30c76b52-2dbf-4d43-a6ea-5533406d824e.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 100604, + "partner": null + }, + "username": "kalyani", + "firstName": "Gavin", + "lastName": "Vallez", + "email": "gavin@toddrothbardlaw.com", + "fullname": "Gavin Vallez", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Default941154ed-a095-411d-8846-c5d2efddcc2f.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 100605, + "partner": null + }, + "username": "leah21", + "firstName": "Leah", + "lastName": "Marcus", + "email": "leah@toddrothbardlaw.com", + "fullname": "Leah Marcus", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Default7dfb4a84-199a-4510-9243-dac1f4d7e35e.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 100606, + "partner": null + }, + "username": "lilypad007", + "firstName": "Lily", + "lastName": "Jalalian", + "email": "lilly@toddrothbardlaw.com", + "fullname": "Lily Jalalian", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/81a6ec4a-defd-4de2-b741-2e0e72d36a0c.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 100607, + "partner": null + }, + "username": "lisa130", + "firstName": "Lisa", + "lastName": "Tymcio", + "email": "lisa@toddrothbardlaw.com", + "fullname": "Lisa Tymcio", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Defaultb2689200-a765-48e6-87b2-afc7093ba9bf.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 100608, + "partner": null + }, + "username": "lynnv", + "firstName": "Lynn", + "lastName": "Vallez", + "email": "lynn@toddrothbardlaw.com", + "fullname": "Lynn Vallez", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Default3279bf6f-a78f-47f4-8d6c-3daa3fb29e9e.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 100609, + "partner": null + }, + "username": "maya10", + "firstName": "Maya", + "lastName": "Jimenez", + "email": "maya@toddrothbardlaw.com", + "fullname": "Maya Jimenez", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Defaultfabb0380-fb78-4861-a36f-770bf91ee855.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 100610, + "partner": null + }, + "username": "michael256", + "firstName": "Michael", + "lastName": "Campbell", + "email": "michael@toddrothbardlaw.com", + "fullname": "Michael Campbell", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Default1d9b87b6-ca9d-4d96-872b-0386ea2e4763.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 100612, + "partner": null + }, + "username": "nicholas31", + "firstName": "Nicholas", + "lastName": "Wang", + "email": "nicolas@toddrothbardlaw.com", + "fullname": "Nicholas Wang", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Defaultfcd596bb-c6cd-4123-a639-5a939a0b903d.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 100613, + "partner": null + }, + "username": "sable", + "firstName": "Sable", + "lastName": "Garcia", + "email": "sable@toddrothbardlaw.com", + "fullname": "Sable Garcia", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Default09272780-8a27-455f-89c4-a312606df6c5.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 100614, + "partner": null + }, + "username": "selena6", + "firstName": "Selena", + "lastName": "Bracamonte", + "email": "selena@toddrothbardlaw.com", + "fullname": "Selena Bracamonte", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Default8b84a894-3175-4068-9b6d-cdb50f722a0b.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 100615, + "partner": null + }, + "username": "steve69", + "firstName": "Steve", + "lastName": "Naumchik", + "email": "steve@toddrothbardlaw.com", + "fullname": "Steve Naumchik", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Default4616efbd-062a-4b5f-9d83-093bd66e0949.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 100616, + "partner": null + }, + "username": "bickying", + "firstName": "Vivian", + "lastName": "Chan", + "email": "vivian@toddrothbardlaw.com", + "fullname": "Vivian Chan", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Default20c0d272-55fa-4d86-8b33-f9a46054943e.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 100617, + "partner": null + }, + "username": "viviana15", + "firstName": "Viviana", + "lastName": "Garcia", + "email": "viviana@toddrothbardlaw.com", + "fullname": "Viviana Garcia", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Default8d1e726d-860d-4ad6-977a-e5deb7c6c7a6.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 100618, + "partner": null + }, + "username": "kalyani1", + "firstName": "Kalyani", + "lastName": "Natarajan", + "email": "kalyani@toddrothbardlaw.com", + "fullname": "Kalyani Natarajan", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Default81b6c1db-8a2a-4430-86c7-debb85f52fb6.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 100619, + "partner": null + }, + "username": "tatiana14", + "firstName": "Tatiana", + "lastName": "Drozdova", + "email": "tatiana@toddrothbardlaw.com", + "fullname": "Tatiana Drozdova", + "isPrimary": true, + "isAdmin": true, + "level": "Follower", + "isFirstPrimary": true, + "isOnlyPrimary": true, + "pictureUrl": "/images/Default416c80a8-0088-4494-af7e-6890931d4c93.png", + "teamRoles": [], + "teamOrgRoles": [ + { + "orgRoleId": { + "native": 203931, + "partner": null + }, + "name": "Primary", + "links": {} + } + ], + "links": {} + }, + { + "userId": { + "native": 100620, + "partner": null + }, + "username": "vaisuria", + "firstName": "Vaisuria", + "lastName": "Sua", + "email": "vais@toddrothbardlaw.com", + "fullname": "Vaisuria Sua", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Default36eaf523-e55b-4ca3-bb7b-52260fd8845f.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 100624, + "partner": null + }, + "username": "legalex", + "firstName": "Legal Ex", + "lastName": "Service Account", + "email": "legal-ex@filevine-service-accounts.com", + "fullname": "Legal Ex Service Account", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Defaultf2a2b8de-4864-427f-b180-b85702e79849.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 100664, + "partner": null + }, + "username": "michelle601", + "firstName": "Michele", + "lastName": "Le", + "email": "michele@toddrothbardlaw.com", + "fullname": "Michele Le", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Default1ae80056-d6fe-43e7-90b1-a218ad5dac26.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + }, + { + "userId": { + "native": 101101, + "partner": null + }, + "username": "jocelyn19", + "firstName": "Jocelyn", + "lastName": "Gonzalez", + "email": "jocelyn@toddrothbardlaw.com", + "fullname": "Jocelyn Gonzalez", + "isPrimary": false, + "isAdmin": true, + "level": "Collaborator", + "isFirstPrimary": false, + "isOnlyPrimary": false, + "pictureUrl": "/images/Defaulte2d3d6b8-04e1-4ed5-911c-61c493c7fb47.png", + "teamRoles": [], + "teamOrgRoles": [], + "links": {} + } + ], + "links": { + "self": "/projects/15914808/team?name=&email=&username=&searchterm=&offset=0&limit=1000&requestedFields=*", + "prev": null, + "next": null + } + }, + "xxx": "b'{\"count\":65,\"offset\":0,\"limit\":1000,\"hasMore\":false,\"requestedFields\":\"*\",\"items\":[{\"userId\":{\"native\":94999,\"partner\":null},\"username\":\"brianskarbek\",\"firstName\":\"Brian \",\"lastName\":\"Skarbek\",\"email\":\"brian@toddrothbardlaw.com\",\"fullname\":\"Brian Skarbek\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Defaultf323b49c-49dd-46af-a6e4-64a2f3c0615e.png\",\"teamRoles\":[],\"teamOrgRoles\":[{\"orgRoleId\":{\"native\":204332,\"partner\":null},\"name\":\"Assigned Attorney\",\"links\":{}}],\"links\":{}},{\"userId\":{\"native\":95000,\"partner\":null},\"username\":\"brittany 35\",\"firstName\":\"Brittany\",\"lastName\":\"Lewis\",\"email\":\"brittanylewis@filevine.com\",\"fullname\":\"Brittany Lewis\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Default7dbfb368-c862-4429-b21c-8ed8c16bf3e3.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":95001,\"partner\":null},\"username\":\"erickcornejo2\",\"firstName\":\"Erickcornejo\",\"email\":\"erickcornejo@filevine.com\",\"fullname\":\"Erickcornejo\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Default086cd6e3-2b66-427b-a057-b1b1c52b76e7.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":95003,\"partner\":null},\"username\":\"filevine2842\",\"firstName\":\"Filevine\",\"lastName\":\"Integration\",\"email\":\"0bjnuzLLsm264d6@filevine.api\",\"fullname\":\"Filevine Integration\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Default393c1c49-ee0a-46ed-b855-1e7509262401.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":95005,\"partner\":null},\"username\":\"filevine2843\",\"firstName\":\"Filevine\",\"lastName\":\"Integration\",\"email\":\"0i24YQVP58mBMUZ@filevine.api\",\"fullname\":\"Filevine Integration\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Defaultb2528ec4-e396-4d12-8b4b-6389ddac2e9e.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":95006,\"partner\":null},\"username\":\"toriabrams15\",\"firstName\":\"Toriabrams\",\"email\":\"toriabrams@filevine.com\",\"fullname\":\"Toriabrams\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Defaultb33b6e5b-e9d7-467f-bf4f-b5cbe29d5518.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":95008,\"partner\":null},\"username\":\"leaddocket364\",\"firstName\":\"leaddocket\",\"lastName\":\"Integration\",\"email\":\"integrations+9227_leaddocket@filevine.com\",\"fullname\":\"leaddocket Integration\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Default56f23805-2d55-4bf9-ba95-f8d3a4ca5df9.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":95010,\"partner\":null},\"username\":\"client29\",\"firstName\":\"Client\",\"lastName\":\"Access\",\"email\":\"access@vineskills.com\",\"fullname\":\"Client Access\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Default5178816e-a92d-4818-846c-99b7b47093e1.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":95011,\"partner\":null},\"username\":\"jen60\",\"firstName\":\"Jen\",\"lastName\":\"Rhodes\",\"email\":\"jen@vineskills.com\",\"fullname\":\"Jen Rhodes\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Defaulte0edd285-3c84-4ad9-8251-01bb17a79c71.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":95020,\"partner\":null},\"username\":\"tony92\",\"firstName\":\"Tony\",\"lastName\":\"Rhodes\",\"email\":\"tony@migrationskills.com\",\"fullname\":\"Tony Rhodes\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Defaultf3441eb0-cbda-4d7f-9060-7104740c8b04.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":95321,\"partner\":null},\"username\":\"sarra\",\"firstName\":\"Sarra\",\"lastName\":\"McDonald\",\"email\":\"sarra@toddrothbardlaw.com\",\"fullname\":\"Sarra McDonald\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Default539fe959-3a23-4d5e-b4f4-400b130db473.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":95322,\"partner\":null},\"username\":\"ryan121\",\"firstName\":\"Ryan\",\"lastName\":\"Mayberry\",\"email\":\"Ryan@toddrothbardlaw.com\",\"fullname\":\"Ryan Mayberry\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Defaulteab668ee-26ca-460c-bcb5-3073994597e5.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":95516,\"partner\":null},\"username\":\"vinesign132\",\"firstName\":\"Vinesign\",\"lastName\":\"Integration\",\"email\":\"vinesign@filevine.com\",\"fullname\":\"Vinesign Integration\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Defaultf4a92ee7-5337-4cee-86ae-89ae88656972.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":96574,\"partner\":null},\"username\":\"jeff68\",\"firstName\":\"Jeff\",\"lastName\":\"Mitchell\",\"email\":\"jeff@migrationskills.com\",\"fullname\":\"Jeff Mitchell\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Default97ac315d-d118-4f81-b5f0-d7fc3b618c77.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":97147,\"partner\":null},\"username\":\"client portal597\",\"firstName\":\"Client Portal\",\"email\":\"clientportal@filevine.com\",\"fullname\":\"Client Portal\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Default7dd0f8c8-aad8-4155-abea-368415ca910a.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":97597,\"partner\":null},\"username\":\"fvda54\",\"firstName\":\"fvda\",\"lastName\":\"fvda\",\"email\":\"fvda@filevine.com\",\"fullname\":\"fvda fvda\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Defaultd6f61afa-562c-413d-8d17-31ed3802dba5.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":97781,\"partner\":null},\"username\":\"amanda129\",\"firstName\":\"Amanda\",\"lastName\":\"Mills\",\"email\":\"amanda@vineskills.com\",\"fullname\":\"Amanda Mills\",\"isPrimary\":false,\"isAdmin\":false,\"level\":\"Guest\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Default88270a2a-af1f-4cdc-8cc5-552b2d84d701.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":99170,\"partner\":null},\"username\":\"suzy7\",\"firstName\":\"Suzy\",\"lastName\":\"Lewis\",\"email\":\"suzy@vineskills.com\",\"fullname\":\"Suzy Lewis\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Default7e6c5e39-8bd7-4d40-a0df-18bc1db3eaff.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":99191,\"partner\":null},\"username\":\"workato20\",\"firstName\":\"Workato\",\"lastName\":\"Service Account\",\"email\":\"workato@filevine-cpi-service-accounts.com\",\"fullname\":\"Workato Service Account\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Default2117adcd-6da3-4def-a458-afe9accb5043.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":99522,\"partner\":null},\"username\":\"billing7\",\"firstName\":\"Billing\",\"email\":\"Billing@ToddRothbardLaw.com\",\"fullname\":\"Billing\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Defaultc8e6377b-34a4-4c60-acb6-147188b9a48e.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":100081,\"partner\":null},\"username\":\"rechelle\",\"firstName\":\"Rechelle\",\"lastName\":\"Romero\",\"email\":\"rechelleromero@filevine.com\",\"fullname\":\"Rechelle Romero\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Defaultcf3c56de-c31b-4e52-98a6-2d4c43233cd8.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":100266,\"partner\":null},\"username\":\"lani2\",\"firstName\":\"Lani\",\"email\":\"lani@toddrothbardlaw.com\",\"fullname\":\"Lani\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Defaultad5e2468-d72c-4dd1-aa86-ab9bf7a658fa.png\",\"teamRoles\":[],\"teamOrgRoles\":[{\"orgRoleId\":{\"native\":204378,\"partner\":null},\"name\":\"Secondary Paralegal\",\"links\":{}}],\"links\":{}},{\"userId\":{\"native\":100267,\"partner\":null},\"username\":\"liz41\",\"firstName\":\"Liz\",\"lastName\":\"Gonzalez\",\"email\":\"liz@toddrothbardlaw.com\",\"fullname\":\"Liz Gonzalez\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Default9c999b31-ef60-40f3-882c-3985087e4ecd.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":100341,\"partner\":null},\"username\":\"shayna1\",\"firstName\":\"Shayna\",\"lastName\":\"Leatiota\",\"email\":\"shayna@toddrothbardlaw.com\",\"fullname\":\"Shayna Leatiota\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Default0cfb8c79-0624-4a21-a4ed-791925496b24.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":100370,\"partner\":null},\"username\":\"sophia17\",\"firstName\":\"Sophia\",\"lastName\":\"Rogers\",\"email\":\"sophia@toddrothbardlaw.com\",\"fullname\":\"Sophia Rogers\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Defaulte4e952a2-e6a6-4e1e-9f73-15043d76d48d.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":100371,\"partner\":null},\"username\":\"rebecca63\",\"firstName\":\"Rebecca\",\"lastName\":\"Hartzler\",\"email\":\"rebecca@toddrothbardlaw.com\",\"fullname\":\"Rebecca Hartzler\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Defaultc18c529a-8faa-48c3-9fa3-c6ba32399c51.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":100372,\"partner\":null},\"username\":\"kevin91\",\"firstName\":\"Kevin\",\"lastName\":\"White\",\"email\":\"kevin@toddrothbardlaw.com\",\"fullname\":\"Kevin White\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Defaultd7f1b41d-f93a-4a3d-8bac-32f1bb6f38da.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":100373,\"partner\":null},\"username\":\"amber55\",\"firstName\":\"Amber\",\"email\":\"amber@toddrothbardlaw.com\",\"fullname\":\"Amber\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Defaultf9c250d0-d803-4872-ad09-20a9540893ed.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":100374,\"partner\":null},\"username\":\"melissa110\",\"firstName\":\"Melissa\",\"lastName\":\"Vincent\",\"email\":\"melissa@toddrothbardlaw.com\",\"fullname\":\"Melissa Vincent\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Default3c88a39e-92e0-4546-9108-32b11b466ed2.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":100375,\"partner\":null},\"username\":\"monica57\",\"firstName\":\"Monica\",\"lastName\":\"Alvarez\",\"email\":\"monica@toddrothbardlaw.com\",\"fullname\":\"Monica Alvarez\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Default76ebe70a-5719-40b4-9b69-be88752bbc4c.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":100376,\"partner\":null},\"username\":\"stephanie148\",\"firstName\":\"Stephanie\",\"lastName\":\"Gonzalez\",\"email\":\"stephanie@toddrothbardlaw.com\",\"fullname\":\"Stephanie Gonzalez\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Defaultbaefaebd-4cff-4452-b232-01b7cfca573a.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":100377,\"partner\":null},\"username\":\"joelle3\",\"firstName\":\"Joelle\",\"lastName\":\"Dingman\",\"email\":\"joelle@toddrothbardlaw.com\",\"fullname\":\"Joelle Dingman\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Default6aa5fd55-1121-431d-a105-6b963e091d7f.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":100378,\"partner\":null},\"username\":\"samar\",\"firstName\":\"Samar\",\"lastName\":\"Joseph\",\"email\":\"samar@toddrothbardlaw.com\",\"fullname\":\"Samar Joseph\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Default23e4d203-ef41-4e67-947e-537f6abfd6e3.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":100382,\"partner\":null},\"username\":\"jenny40\",\"firstName\":\"Jenny\",\"email\":\"Jenny@ToddRothbardLaw.com\",\"fullname\":\"Jenny\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Default588d7f24-1228-4dec-a8ef-ae438c51cf09.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":100462,\"partner\":null},\"username\":\"bryce7\",\"firstName\":\"Bryce\",\"lastName\":\"Covert\",\"email\":\"bryce.covert@gmail.com\",\"fullname\":\"Bryce Covert\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Default515fb569-6c88-473c-b755-5487870c8caa.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":100510,\"partner\":null},\"username\":\"brycecovert\",\"firstName\":\"Bryce Covert\",\"lastName\":\"Service Account\",\"email\":\"bryce-covert@filevine-service-accounts.com\",\"fullname\":\"Bryce Covert Service Account\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Defaulta99460fc-90ef-4859-8f6e-d91d2c7c7efa.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":100594,\"partner\":null},\"username\":\"jdesai2\",\"firstName\":\"Jdesai\",\"email\":\"jdesai@legalexllc.com\",\"fullname\":\"Jdesai\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Default7e2a5e3e-056e-4314-b7e1-593f48cb0596.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":100595,\"partner\":null},\"username\":\"allayah\",\"firstName\":\"Allayah\",\"email\":\"allayah@toddrothbardlaw.com\",\"fullname\":\"Allayah\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Default180e1685-46dd-4c02-93bb-4f99fadd7781.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":100596,\"partner\":null},\"username\":\"ariadna\",\"firstName\":\"Ariadna\",\"lastName\":\"Kench\",\"email\":\"ariadna@toddrothbardlaw.com\",\"fullname\":\"Ariadna Kench\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Default27368339-d77e-4b9f-b7a9-697779359fe8.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":100597,\"partner\":null},\"username\":\"candice10\",\"firstName\":\"Candice\",\"lastName\":\"McCarty\",\"email\":\"candice@toddrothbardlaw.com\",\"fullname\":\"Candice McCarty\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Default32775755-ba45-42ea-abd2-64339a84a1e3.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":100598,\"partner\":null},\"username\":\"chelsea48\",\"firstName\":\"Chelsea\",\"lastName\":\"Cawley\",\"email\":\"chelsea@toddrothbardlaw.com\",\"fullname\":\"Chelsea Cawley\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Default8d67f917-e3c4-4673-8631-568caccca633.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":100599,\"partner\":null},\"username\":\"chris119\",\"firstName\":\"Chris\",\"lastName\":\"Cooper\",\"email\":\"chris@toddrothbardlaw.com\",\"fullname\":\"Chris Cooper\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Default9fc80486-9288-4bc4-8cff-40844cac0ce2.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":100600,\"partner\":null},\"username\":\"christina60\",\"firstName\":\"Christina\",\"lastName\":\"Dabis\",\"email\":\"christinad@toddrothbardlaw.com\",\"fullname\":\"Christina Dabis\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Defaultdc9e015d-323f-4804-baa0-a15134b9c85a.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":100601,\"partner\":null},\"username\":\"davidkanter\",\"firstName\":\"David\",\"lastName\":\"Kanter\",\"email\":\"david@toddrothbardlaw.com\",\"fullname\":\"David Kanter\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Defaultd65b759f-2e17-42e6-b735-00cf05ca70a9.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":100602,\"partner\":null},\"username\":\"durim\",\"firstName\":\"Durim\",\"lastName\":\"Choi\",\"email\":\"durim@toddrothbardlaw.com\",\"fullname\":\"Durim Choi\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Default0302b9de-a484-4319-a2f9-ce738d9a0ddb.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":100603,\"partner\":null},\"username\":\"dylan24\",\"firstName\":\"Dylan\",\"lastName\":\"McMurray\",\"email\":\"dylan@toddrothbardlaw.com\",\"fullname\":\"Dylan McMurray\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Default30c76b52-2dbf-4d43-a6ea-5533406d824e.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":100604,\"partner\":null},\"username\":\"kalyani\",\"firstName\":\"Gavin\",\"lastName\":\"Vallez\",\"email\":\"gavin@toddrothbardlaw.com\",\"fullname\":\"Gavin Vallez\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Default941154ed-a095-411d-8846-c5d2efddcc2f.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":100605,\"partner\":null},\"username\":\"leah21\",\"firstName\":\"Leah\",\"lastName\":\"Marcus\",\"email\":\"leah@toddrothbardlaw.com\",\"fullname\":\"Leah Marcus\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Default7dfb4a84-199a-4510-9243-dac1f4d7e35e.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":100606,\"partner\":null},\"username\":\"lilypad007\",\"firstName\":\"Lily\",\"lastName\":\"Jalalian\",\"email\":\"lilly@toddrothbardlaw.com\",\"fullname\":\"Lily Jalalian\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/81a6ec4a-defd-4de2-b741-2e0e72d36a0c.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":100607,\"partner\":null},\"username\":\"lisa130\",\"firstName\":\"Lisa\",\"lastName\":\"Tymcio\",\"email\":\"lisa@toddrothbardlaw.com\",\"fullname\":\"Lisa Tymcio\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Defaultb2689200-a765-48e6-87b2-afc7093ba9bf.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":100608,\"partner\":null},\"username\":\"lynnv\",\"firstName\":\"Lynn\",\"lastName\":\"Vallez\",\"email\":\"lynn@toddrothbardlaw.com\",\"fullname\":\"Lynn Vallez\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Default3279bf6f-a78f-47f4-8d6c-3daa3fb29e9e.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":100609,\"partner\":null},\"username\":\"maya10\",\"firstName\":\"Maya\",\"lastName\":\"Jimenez\",\"email\":\"maya@toddrothbardlaw.com\",\"fullname\":\"Maya Jimenez\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Defaultfabb0380-fb78-4861-a36f-770bf91ee855.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":100610,\"partner\":null},\"username\":\"michael256\",\"firstName\":\"Michael\",\"lastName\":\"Campbell\",\"email\":\"michael@toddrothbardlaw.com\",\"fullname\":\"Michael Campbell\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Default1d9b87b6-ca9d-4d96-872b-0386ea2e4763.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":100612,\"partner\":null},\"username\":\"nicholas31\",\"firstName\":\"Nicholas\",\"lastName\":\"Wang\",\"email\":\"nicolas@toddrothbardlaw.com\",\"fullname\":\"Nicholas Wang\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Defaultfcd596bb-c6cd-4123-a639-5a939a0b903d.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":100613,\"partner\":null},\"username\":\"sable\",\"firstName\":\"Sable\",\"lastName\":\"Garcia\",\"email\":\"sable@toddrothbardlaw.com\",\"fullname\":\"Sable Garcia\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Default09272780-8a27-455f-89c4-a312606df6c5.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":100614,\"partner\":null},\"username\":\"selena6\",\"firstName\":\"Selena\",\"lastName\":\"Bracamonte\",\"email\":\"selena@toddrothbardlaw.com\",\"fullname\":\"Selena Bracamonte\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Default8b84a894-3175-4068-9b6d-cdb50f722a0b.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":100615,\"partner\":null},\"username\":\"steve69\",\"firstName\":\"Steve\",\"lastName\":\"Naumchik\",\"email\":\"steve@toddrothbardlaw.com\",\"fullname\":\"Steve Naumchik\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Default4616efbd-062a-4b5f-9d83-093bd66e0949.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":100616,\"partner\":null},\"username\":\"bickying\",\"firstName\":\"Vivian\",\"lastName\":\"Chan\",\"email\":\"vivian@toddrothbardlaw.com\",\"fullname\":\"Vivian Chan\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Default20c0d272-55fa-4d86-8b33-f9a46054943e.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":100617,\"partner\":null},\"username\":\"viviana15\",\"firstName\":\"Viviana\",\"lastName\":\"Garcia\",\"email\":\"viviana@toddrothbardlaw.com\",\"fullname\":\"Viviana Garcia\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Default8d1e726d-860d-4ad6-977a-e5deb7c6c7a6.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":100618,\"partner\":null},\"username\":\"kalyani1\",\"firstName\":\"Kalyani\",\"lastName\":\"Natarajan\",\"email\":\"kalyani@toddrothbardlaw.com\",\"fullname\":\"Kalyani Natarajan\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Default81b6c1db-8a2a-4430-86c7-debb85f52fb6.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":100619,\"partner\":null},\"username\":\"tatiana14\",\"firstName\":\"Tatiana\",\"lastName\":\"Drozdova\",\"email\":\"tatiana@toddrothbardlaw.com\",\"fullname\":\"Tatiana Drozdova\",\"isPrimary\":true,\"isAdmin\":true,\"level\":\"Follower\",\"isFirstPrimary\":true,\"isOnlyPrimary\":true,\"pictureUrl\":\"/images/Default416c80a8-0088-4494-af7e-6890931d4c93.png\",\"teamRoles\":[],\"teamOrgRoles\":[{\"orgRoleId\":{\"native\":203931,\"partner\":null},\"name\":\"Primary\",\"links\":{}}],\"links\":{}},{\"userId\":{\"native\":100620,\"partner\":null},\"username\":\"vaisuria\",\"firstName\":\"Vaisuria\",\"lastName\":\"Sua\",\"email\":\"vais@toddrothbardlaw.com\",\"fullname\":\"Vaisuria Sua\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Default36eaf523-e55b-4ca3-bb7b-52260fd8845f.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":100624,\"partner\":null},\"username\":\"legalex\",\"firstName\":\"Legal Ex\",\"lastName\":\"Service Account\",\"email\":\"legal-ex@filevine-service-accounts.com\",\"fullname\":\"Legal Ex Service Account\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Defaultf2a2b8de-4864-427f-b180-b85702e79849.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":100664,\"partner\":null},\"username\":\"michelle601\",\"firstName\":\"Michele\",\"lastName\":\"Le\",\"email\":\"michele@toddrothbardlaw.com\",\"fullname\":\"Michele Le\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Default1ae80056-d6fe-43e7-90b1-a218ad5dac26.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}},{\"userId\":{\"native\":101101,\"partner\":null},\"username\":\"jocelyn19\",\"firstName\":\"Jocelyn\",\"lastName\":\"Gonzalez\",\"email\":\"jocelyn@toddrothbardlaw.com\",\"fullname\":\"Jocelyn Gonzalez\",\"isPrimary\":false,\"isAdmin\":true,\"level\":\"Collaborator\",\"isFirstPrimary\":false,\"isOnlyPrimary\":false,\"pictureUrl\":\"/images/Defaulte2d3d6b8-04e1-4ed5-911c-61c493c7fb47.png\",\"teamRoles\":[],\"teamOrgRoles\":[],\"links\":{}}],\"links\":{\"self\":\"/projects/15914808/team?name=&email=&username=&searchterm=&offset=0&limit=1000&requestedFields=*\",\"prev\":null,\"next\":null}}'", + "headers": { + "Date": "Fri, 07 Nov 2025 05:37:06 GMT", + "Content-Type": "application/json; charset=utf-8", + "Transfer-Encoding": "chunked", + "Connection": "keep-alive", + "Server": "cloudflare", + "access-control-allow-headers": "Content-Type, x-fv-orgid, x-fv-clientip, x-fv-userid, authorization, x-fv-application", + "access-control-allow-methods": "GET, POST, PUT, PATCH, DELETE, OPTIONS, LOCK, UNLOCK, PROPPATCH, PROPFIND", + "access-control-allow-origin": "*", + "Cache-Control": "no-store, must-revalidate, no-cache, max-age=0, private", + "ratelimit-limit": "10;r=3300;w=60;c=Customer Temp", + "ratelimit-remaining": "9;r=3300;w=60;c=Customer Temp", + "content-security-policy": "default-src 'self';child-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://app.vinesign.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.amazonaws.com https://app.pendo.io https://feedback.us.pendo.io docs.google.com https://feedback.filevine.com *.newrelic.com *.filev.io *.flvn.io filev.io flvn.io 'self';connect-src *.filevinedev.com *.filevineapp.com *.filevine.ca *.filevine.com *.filevinegov.com *.fvauth.com https://app.vinesign.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.amazonaws.com *.nr-data.net *.pendo.io *.pdftron.com *.typeform.com *.newrelic.com https://app.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://localhost:8080 *.filev.io *.flvn.io filev.io flvn.io 'self' blob: wss:;font-src *.bootstrapcdn.com fonts.gstatic.com *.typekit.net *.typeform.com 'self' data: blob:;frame-src *;frame-ancestors https://*.filevineapp.com https://app.pendo.io 'self';img-src *.typekit.net *.typeform.com https://app.pendo.io https://cdn.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-globalproducts-prod-us-logos.s3.us-west-2.amazonaws.com https://us.fv-globalproducts-logos.prod.filevine.com https://fv-prod-us-shard-h-fv-internal-image.s3.amazonaws.com https://fv-prod-us-shard-h-fv-internal-image.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.filev.io *.flvn.io filev.io flvn.io *.kaywa.com www.googletagmanager.com 'self' data: blob: cid:;manifest-src 'self';media-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://us-shard-h-discussions.filevineapp.com *.filev.io *.flvn.io filev.io flvn.io 'self';object-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com *.filev.io *.flvn.io filev.io flvn.io 'self';script-src *.bootstrapcdn.com *.typekit.net *.typeform.com *.newrelic.com *.nr-data.net https://app.pendo.io https://cdn.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://duuxdetkhlwyv.cloudfront.net https://code.jquery.com https://localhost:8080 https://www.googletagmanager.com 'unsafe-inline' 'unsafe-eval' 'self' blob:;style-src *.bootstrapcdn.com fonts.googleapis.com *.typekit.net *.typeform.com https://app.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://duuxdetkhlwyv.cloudfront.net https://cdn.pendo.io https://data.pendo.io 'unsafe-inline' 'self';worker-src 'self' blob: 'unsafe-inline'", + "x-filevine-api-version": "3.3487.15.0", + "x-fv-correlation-id": "426a09ee49314e47ae2070dd78e78914", + "x-aspnet-version": "4.0.30319", + "x-powered-by": "ASP.NET", + "x-content-type-options": "nosniff", + "x-frame-option": "SAMEORIGIN", + "x-xss-protection": "1; mode=block", + "x-fv-gateway-correlation-id": "426a09ee49314e47ae2070dd78e78914", + "cf-cache-status": "DYNAMIC", + "Content-Encoding": "gzip", + "CF-RAY": "99aa7a0af98b6e7d-SEA", + "alt-svc": "h3=\":443\"; ma=86400" + } + } +} \ No newline at end of file diff --git a/examples/project_type_pahe_list.json b/examples/project_type_pahe_list.json index 876e468..10aab11 100644 --- a/examples/project_type_pahe_list.json +++ b/examples/project_type_pahe_list.json @@ -3,7 +3,7 @@ "url": "https://api.filevineapp.com/fv-app/v2/ProjectTypes/34111/phases", "headers": { "Accept": "application/json", - "Authorization": "Bearer eyJhbGciOiJSUzUxMiIsImtpZCI6Ijg2NjRFMkY0MDNCQjIxMzk2MzQ4NUFDOEI0MzVGMEJBOTgxNTBFN0RSUzUxMiIsInR5cCI6ImF0K2p3dCIsIng1dCI6ImhtVGk5QU83SVRsalNGckl0RFh3dXBnVkRuMCJ9.eyJuYmYiOjE3NjIzOTk2NzEsImV4cCI6MTc2MjQwMTQ3MSwiaXNzIjoiaHR0cHM6Ly9pZGVudGl0eS5maWxldmluZS5jb20iLCJhdWQiOlsiZmlsZXZpbmUudjIuYXBpIiwiZnYuYXBpLmdhdGV3YXkiLCJmdi5hdXRoIl0sImNsaWVudF9pZCI6IjRGMTg3MzhDLTEwN0EtNEI4Mi1CRkFDLTMwOEYxQjZBNjI2QSIsInN1YiI6ImY3MDQ4NGZmLTQ5MjItNDliMy05MWFkLTE2YjA5Mjk5MGIzMCIsImF1dGhfdGltZSI6MTc2MjM5OTY3MSwiaWRwIjoibG9jYWwiLCJwYXRfaWQiOiJoQll0K013VUJ4bm9xOTNYNVNUdnpyY0xwVFQ2M09HVHhudVcrZGFyZTVJPSIsInBhdF9uYW1lIjoiQnJ5Y2UgQ292ZXJ0IiwicGF0X3ZlcnNpb24iOiIxIiwidGVuYW50X2ZybiI6ImZybjpmaWxldmluZTp1cy1wcm9kOmZpbGV2aW5lLWFwcDo6OnRlbmFudFxcMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwidGVuYW50X2lkIjoiMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwianRpIjoiRjI1MENBNjMyRkJGNjZERjFBNDRGNkE4RUFGODkwQ0UiLCJpYXQiOjE3NjIzOTk2NzEsInNjb3BlIjpbImVtYWlsIiwiZmlsZXZpbmUudjIuYXBpLioiLCJmdi5hcGkuZ2F0ZXdheS5hY2Nlc3MiLCJmdi5hdXRoLnRlbmFudC5yZWFkIiwib3BlbmlkIiwidGVuYW50Il0sImFtciI6WyJwZXJzb25hbF9hY2Nlc3NfdG9rZW4iXX0.zBMiSHusFt5F08vjoucT4fFlKUvZ6B5WfChZvEyYs8liaWitNq1X1RqniqE3YEhaRpeSPLWwvMAwgrKwGIO806LsuWXSDdOfrZujUpGVRJ4MIjINm7423qSl_KtdH1G_WGt4wM7Qh4jJRNDsifJO0f2eM-sqGe5RSIGEigYp8B1c8Grsn-h_fgNVTjT5zJV80w1E8w2tltRpn41xBZFpJsJGSLWlj6dh0_ZeSvFzB5cKOjzjg6doWEKb27cYnyOCkvvoGZ1qmEx5_iyNdn_1sFIL1C1GxcKvY3ZlRGAbqjfT_l63E8mbJ27Lat1F1k7KoOgnOQ48XzNhWjmyoA4D8Q", + "Authorization": "Bearer eyJhbGciOiJSUzUxMiIsImtpZCI6Ijk5MDg4NENGRTRCRTgyQzU4QzA0MDJBQjc5MkE2Rjc5NkI5MUQ2MTBSUzUxMiIsInR5cCI6ImF0K2p3dCIsIng1dCI6Im1RaUV6LVMtZ3NXTUJBS3JlU3B2ZVd1UjFoQSJ9.eyJuYmYiOjE3NjI0OTM4MjUsImV4cCI6MTc2MjQ5NTYyNSwiaXNzIjoiaHR0cHM6Ly9pZGVudGl0eS5maWxldmluZS5jb20iLCJhdWQiOlsiZmlsZXZpbmUudjIuYXBpIiwiZnYuYXBpLmdhdGV3YXkiLCJmdi5hdXRoIl0sImNsaWVudF9pZCI6IjRGMTg3MzhDLTEwN0EtNEI4Mi1CRkFDLTMwOEYxQjZBNjI2QSIsInN1YiI6ImY3MDQ4NGZmLTQ5MjItNDliMy05MWFkLTE2YjA5Mjk5MGIzMCIsImF1dGhfdGltZSI6MTc2MjQ5MzgyNSwiaWRwIjoibG9jYWwiLCJwYXRfaWQiOiJoQll0K013VUJ4bm9xOTNYNVNUdnpyY0xwVFQ2M09HVHhudVcrZGFyZTVJPSIsInBhdF9uYW1lIjoiQnJ5Y2UgQ292ZXJ0IiwicGF0X3ZlcnNpb24iOiIxIiwidGVuYW50X2ZybiI6ImZybjpmaWxldmluZTp1cy1wcm9kOmZpbGV2aW5lLWFwcDo6OnRlbmFudFxcMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwidGVuYW50X2lkIjoiMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwianRpIjoiRUFEMUY5RDBCOTkzNjVCRTQyMjA0RDNGNkJFMzg5NkEiLCJpYXQiOjE3NjI0OTM4MjUsInNjb3BlIjpbImVtYWlsIiwiZmlsZXZpbmUudjIuYXBpLioiLCJmdi5hcGkuZ2F0ZXdheS5hY2Nlc3MiLCJmdi5hdXRoLnRlbmFudC5yZWFkIiwib3BlbmlkIiwidGVuYW50Il0sImFtciI6WyJwZXJzb25hbF9hY2Nlc3NfdG9rZW4iXX0.W3zXHAKoBQLtblmBIcqTh7Zia0zWKVy9e5A2kUKkcESxTDD47HZhpxHDp62lJbgMN15b96yuf8YTybtNfWVV9W6fkVEebaVs8vWCxwiDXWFhmqIp8XJ_m5TXY6ymefs0YYALWHkxd0ZLR-WOwiIFJOXZoKeQACh9pkkRjXhwvPlisiqFO5LzCAZuyKFl-vIXeAu9gWDw2iCEcAJI8aBphPCNHbzmkuv3BGi0OG6NtpY2keNHu_jVbXHKZeWS16FpcmgIMYVEtPe61gGiNwzhS02EAlEw28WAfHul8bWK24tBI4kAD4L3ajb2TOsWgw9GTrOJhCnr_PgQ8RVBAM98Jw", "x-fv-orgid": "9227", "x-fv-userid": "100510" }, @@ -244,7 +244,7 @@ }, "xxx": "b'{\"count\":24,\"offset\":0,\"limit\":50,\"hasMore\":false,\"requestedFields\":\"*\",\"items\":[{\"phaseId\":{\"native\":209436,\"partner\":null},\"name\":\"Nonpayment File Review\",\"isPermanent\":false,\"links\":{}},{\"phaseId\":{\"native\":209437,\"partner\":null},\"name\":\"Attorney File Review\",\"isPermanent\":false,\"links\":{}},{\"phaseId\":{\"native\":209438,\"partner\":null},\"name\":\"Notice Preparation\",\"isPermanent\":false,\"links\":{}},{\"phaseId\":{\"native\":209439,\"partner\":null},\"name\":\"Notice Pending\",\"isPermanent\":false,\"links\":{}},{\"phaseId\":{\"native\":209440,\"partner\":null},\"name\":\"Notice Expired\",\"isPermanent\":false,\"links\":{}},{\"phaseId\":{\"native\":209442,\"partner\":null},\"name\":\"Preparing and Filing UD\",\"isPermanent\":false,\"links\":{}},{\"phaseId\":{\"native\":209443,\"partner\":null},\"name\":\"Waiting for Answer\",\"isPermanent\":false,\"links\":{}},{\"phaseId\":{\"native\":209444,\"partner\":null},\"name\":\"Archived\",\"isPermanent\":true,\"links\":{}},{\"phaseId\":{\"native\":210761,\"partner\":null},\"name\":\"Service of Process\",\"isPermanent\":false,\"links\":{}},{\"phaseId\":{\"native\":211435,\"partner\":null},\"name\":\"Default\",\"isPermanent\":false,\"links\":{}},{\"phaseId\":{\"native\":211436,\"partner\":null},\"name\":\"Pre-Answer Motion\",\"isPermanent\":false,\"links\":{}},{\"phaseId\":{\"native\":211437,\"partner\":null},\"name\":\"Request for Trial\",\"isPermanent\":false,\"links\":{}},{\"phaseId\":{\"native\":211438,\"partner\":null},\"name\":\"Trial Prep and Trial\",\"isPermanent\":false,\"links\":{}},{\"phaseId\":{\"native\":211439,\"partner\":null},\"name\":\"Writ and Sheriff\",\"isPermanent\":false,\"links\":{}},{\"phaseId\":{\"native\":211440,\"partner\":null},\"name\":\"Lockout Pending\",\"isPermanent\":false,\"links\":{}},{\"phaseId\":{\"native\":211441,\"partner\":null},\"name\":\"Stipulation Preparation\",\"isPermanent\":false,\"links\":{}},{\"phaseId\":{\"native\":211442,\"partner\":null},\"name\":\"Stipulation Pending\",\"isPermanent\":false,\"links\":{}},{\"phaseId\":{\"native\":211443,\"partner\":null},\"name\":\"Stipulation Expired\",\"isPermanent\":false,\"links\":{}},{\"phaseId\":{\"native\":211446,\"partner\":null},\"name\":\"On Hold\",\"isPermanent\":false,\"links\":{}},{\"phaseId\":{\"native\":211466,\"partner\":null},\"name\":\"Request for Monetary Judgment\",\"isPermanent\":false,\"links\":{}},{\"phaseId\":{\"native\":211467,\"partner\":null},\"name\":\"Appeals and Post-Poss. Motions\",\"isPermanent\":false,\"links\":{}},{\"phaseId\":{\"native\":211957,\"partner\":null},\"name\":\"Migrated\",\"isPermanent\":false,\"links\":{}},{\"phaseId\":{\"native\":213691,\"partner\":null},\"name\":\"Close Out/ Invoicing\",\"isPermanent\":false,\"links\":{}},{\"phaseId\":{\"native\":213774,\"partner\":null},\"name\":\"Judgment After Stip & Order\",\"isPermanent\":false,\"links\":{}}],\"links\":{\"self\":\"/projecttypess/34111/sections?name=&offset=0&limit=50&requestedFields=*\",\"prev\":null,\"next\":null}}'", "headers": { - "Date": "Thu, 06 Nov 2025 03:27:52 GMT", + "Date": "Fri, 07 Nov 2025 05:37:05 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Connection": "keep-alive", @@ -254,19 +254,19 @@ "access-control-allow-origin": "*", "Cache-Control": "no-store, must-revalidate, no-cache, max-age=0, private", "ratelimit-limit": "10;r=3300;w=60;c=Customer Temp", - "ratelimit-remaining": "8;r=3300;w=60;c=Customer Temp", + "ratelimit-remaining": "9;r=3300;w=60;c=Customer Temp", "content-security-policy": "default-src 'self';child-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://app.vinesign.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.amazonaws.com https://app.pendo.io https://feedback.us.pendo.io docs.google.com https://feedback.filevine.com *.newrelic.com *.filev.io *.flvn.io filev.io flvn.io 'self';connect-src *.filevinedev.com *.filevineapp.com *.filevine.ca *.filevine.com *.filevinegov.com *.fvauth.com https://app.vinesign.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.amazonaws.com *.nr-data.net *.pendo.io *.pdftron.com *.typeform.com *.newrelic.com https://app.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://localhost:8080 *.filev.io *.flvn.io filev.io flvn.io 'self' blob: wss:;font-src *.bootstrapcdn.com fonts.gstatic.com *.typekit.net *.typeform.com 'self' data: blob:;frame-src *;frame-ancestors https://*.filevineapp.com https://app.pendo.io 'self';img-src *.typekit.net *.typeform.com https://app.pendo.io https://cdn.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-globalproducts-prod-us-logos.s3.us-west-2.amazonaws.com https://us.fv-globalproducts-logos.prod.filevine.com https://fv-prod-us-shard-h-fv-internal-image.s3.amazonaws.com https://fv-prod-us-shard-h-fv-internal-image.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.filev.io *.flvn.io filev.io flvn.io *.kaywa.com www.googletagmanager.com 'self' data: blob: cid:;manifest-src 'self';media-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://us-shard-h-discussions.filevineapp.com *.filev.io *.flvn.io filev.io flvn.io 'self';object-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com *.filev.io *.flvn.io filev.io flvn.io 'self';script-src *.bootstrapcdn.com *.typekit.net *.typeform.com *.newrelic.com *.nr-data.net https://app.pendo.io https://cdn.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://duuxdetkhlwyv.cloudfront.net https://code.jquery.com https://localhost:8080 https://www.googletagmanager.com 'unsafe-inline' 'unsafe-eval' 'self' blob:;style-src *.bootstrapcdn.com fonts.googleapis.com *.typekit.net *.typeform.com https://app.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://duuxdetkhlwyv.cloudfront.net https://cdn.pendo.io https://data.pendo.io 'unsafe-inline' 'self';worker-src 'self' blob: 'unsafe-inline'", "x-filevine-api-version": "3.3487.15.0", - "x-fv-correlation-id": "af523cb9727b41c188375c0df071e2bb", + "x-fv-correlation-id": "54f776bd9bd042be9c0e6b06b1e9a47c", "x-aspnet-version": "4.0.30319", "x-powered-by": "ASP.NET", "x-content-type-options": "nosniff", "x-frame-option": "SAMEORIGIN", "x-xss-protection": "1; mode=block", - "x-fv-gateway-correlation-id": "af523cb9727b41c188375c0df071e2bb", + "x-fv-gateway-correlation-id": "54f776bd9bd042be9c0e6b06b1e9a47c", "cf-cache-status": "DYNAMIC", "Content-Encoding": "gzip", - "CF-RAY": "99a17f5c48330879-SEA", + "CF-RAY": "99aa7a087a3db0df-SEA", "alt-svc": "h3=\":443\"; ma=86400" } } diff --git a/generate_sample.py b/generate_sample.py index a56c4e7..a8a5ddb 100644 --- a/generate_sample.py +++ b/generate_sample.py @@ -222,8 +222,22 @@ REQUESTS = [ "method": "GET" }, "examples/project_type_pahe_list.json" -) -] +), +( + { + "url": f"https://api.filevineapp.com/fv-app/v2/Projects/15914808/team", + "headers": { + "Accept": "application/json", + "Authorization": f"Bearer {get_bearer_token()}", + "x-fv-orgid": os.environ.get("FILEVINE_ORG_ID"), + "x-fv-userid": os.environ.get("FILEVINE_USER_ID"), + }, + "params": {"limit": 1000}, + "method": "GET" + + }, + "examples/project_team.json" +)] def generate_sample_request_response(request_config): """Generate a sample request/response pair using the provided request configuration.""" diff --git a/sync.py b/sync.py index bb55358..46ef9ef 100644 --- a/sync.py +++ b/sync.py @@ -21,6 +21,9 @@ def main(): print(f"Successfully synced {len(projects)} projects to Firestore") except Exception as e: print(f"Error during sync: {e}") + import traceback + traceback.print_exc() + sys.exit(1) if __name__ == "__main__": diff --git a/templates/dashboard.html b/templates/dashboard.html index 5d17bf1..f020855 100644 --- a/templates/dashboard.html +++ b/templates/dashboard.html @@ -16,11 +16,10 @@ Case Number Premises Address Premises City - Client Email (Primary) Responsible Attorney and best contact Staff person currently in charge of your case, with contact info 2nd Staff person currently in charge of your case, with contact info - Link to Hona Portal + Link to Documents Matter Stage Completed Tasks Pending Tasks @@ -56,7 +55,6 @@ Date Possession Recovered Attorney's Fees Costs - Service Attempt Date 1 @@ -73,59 +71,25 @@ {{ r.premises_address }} {{ r.premises_city }} - -
-
???
- + {{ r.responsible_attorney }} - {% if r.responsible_attorney %} -
-
- {{- r.responsible_attorney.initials}} -
- -
{{ r.responsible_attorney.fullname }}
-
- {% endif %} + {{ r.staff_person }} -
- - {% if r.staff_person %} -
-
- {{- r.staff_person.initials}} -
- -
{{ r.staff_person.fullname }}
-
- {% endif %} -
???
-
+ {{ r.staff_person_2 }} -
-
???
- -
- - -
-
???
- - - - + {% if r.documents_url %} + Documents + {% endif %} {{ r.phase_name }} {% if r.completed_tasks %}
{% if r.completed_tasks|length > 2 %} @@ -148,7 +112,7 @@
@@ -160,7 +124,7 @@
{% if r.pending_tasks|length > 2 %} @@ -183,7 +147,7 @@
@@ -192,7 +156,7 @@ {{ r.notice_service_date }} {{ r.notice_expiration_date }} - + {{ r.case_field_date }} {% if r.daily_rent_damages %}${{ "{:,.2f}".format(r.daily_rent_damages) }}{% endif %} {{ r.default_date }} {{ r.default_entered_on_date }} @@ -222,7 +186,6 @@ {{ r.date_possession_recovered }} {{ r.attorney_fees }} {{ r.costs }} - {{ r.service_attempt_date_1 }} {% else %}