Actually looking up data entry
This commit is contained in:
40
app.py
40
app.py
@@ -74,13 +74,17 @@ def fetch_all_projects():
|
||||
|
||||
# List projects (all pages)
|
||||
projects = list_all_projects(bearer)
|
||||
# todo, only 10 projects
|
||||
projects = projects[:10]
|
||||
|
||||
# Fetch details for each
|
||||
detailed_rows = []
|
||||
for p in projects:
|
||||
pid = (p.get("projectId") or {}).get("native")
|
||||
c = fetch_client(bearer, (p.get("clientId") or {}).get("native"))
|
||||
print("fetched client")
|
||||
cs = fetch_contacts(bearer, pid)
|
||||
print("fetched contacts")
|
||||
|
||||
if pid is None:
|
||||
continue
|
||||
@@ -89,9 +93,17 @@ def fetch_all_projects():
|
||||
except Exception as e:
|
||||
print(f"[WARN] detail fetch failed for {pid}: {e}")
|
||||
detail = {}
|
||||
from pprint import pprint
|
||||
defendant_one = next((c.get('orgContact', {}) for c in cs if "Defendant" in c.get('orgContact', {}).get('personTypes', [])), {})
|
||||
new_file_review = fetch_form(bearer, pid, "newFileReview") or {}
|
||||
dates_and_deadlines = fetch_form(bearer, pid, "datesAndDeadlines") or {}
|
||||
row = {
|
||||
"client": c.get("firstName"),
|
||||
"matter_description": p.get("projectName"),
|
||||
"defendant_1": defendant_one.get('fullName', 'Unknown'),
|
||||
"matter_open": p.get("createdDate"),
|
||||
"notice_type": new_file_review.get("noticeType", '') or '',
|
||||
"case_number": dates_and_deadlines.get('caseNumber', '') or '',
|
||||
"contacts": cs,
|
||||
"ProjectEmailAddress": p.get("projectEmailAddress"),
|
||||
"Number": p.get("number"),
|
||||
@@ -208,7 +220,9 @@ def get_filevine_bearer():
|
||||
resp = requests.post(url, data=data, headers=headers, timeout=30)
|
||||
resp.raise_for_status()
|
||||
js = resp.json()
|
||||
return js.get("access_token")
|
||||
token = js.get("access_token")
|
||||
print(f"Got bearer {token}")
|
||||
return token
|
||||
|
||||
|
||||
def list_all_projects(bearer: str):
|
||||
@@ -222,7 +236,10 @@ def list_all_projects(bearer: str):
|
||||
results = []
|
||||
last_id = None
|
||||
tries = 0
|
||||
while True:
|
||||
# TODO we probably need to sync the data with fierbase
|
||||
while len(results) < 200:
|
||||
cnt = len(results)
|
||||
print(f"list try {tries}, last_id {last_id}, count {cnt}")
|
||||
tries += 1
|
||||
url = base
|
||||
params = {}
|
||||
@@ -281,6 +298,25 @@ def fetch_contacts(bearer: str, project_id_native: int):
|
||||
return r.json().get("items")
|
||||
|
||||
|
||||
def fetch_form(bearer: str, project_id_native: int, form: str):
|
||||
try:
|
||||
url = f"https://api.filevineapp.com/fv-app/v2/Projects/{project_id_native}/Forms/{form}"
|
||||
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()
|
||||
return r.json()
|
||||
except Exception as e:
|
||||
print(e)
|
||||
return {}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@app.route("/dashboard")
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"sample_request": {
|
||||
"url": "https://api.filevineapp.com/fv-app/v2/contacts/43125866",
|
||||
"url": "https://api.filevineapp.com/fv-app/v2/contacts/43407853",
|
||||
"headers": {
|
||||
"Accept": "application/json",
|
||||
"Authorization": "Bearer eyJhbGciOiJSUzUxMiIsImtpZCI6Ijg2NjRFMkY0MDNCQjIxMzk2MzQ4NUFDOEI0MzVGMEJBOTgxNTBFN0RSUzUxMiIsInR5cCI6ImF0K2p3dCIsIng1dCI6ImhtVGk5QU83SVRsalNGckl0RFh3dXBnVkRuMCJ9.eyJuYmYiOjE3NjExNzg4NzUsImV4cCI6MTc2MTE4MDY3NSwiaXNzIjoiaHR0cHM6Ly9pZGVudGl0eS5maWxldmluZS5jb20iLCJhdWQiOlsiZmlsZXZpbmUudjIuYXBpIiwiZnYuYXBpLmdhdGV3YXkiLCJmdi5hdXRoIl0sImNsaWVudF9pZCI6IjRGMTg3MzhDLTEwN0EtNEI4Mi1CRkFDLTMwOEYxQjZBNjI2QSIsInN1YiI6ImY3MDQ4NGZmLTQ5MjItNDliMy05MWFkLTE2YjA5Mjk5MGIzMCIsImF1dGhfdGltZSI6MTc2MTE3ODg3NSwiaWRwIjoibG9jYWwiLCJwYXRfaWQiOiJmUkEwbHRoSnp5aTBBWU9ZS1F4WGVlckczUHc1MXEyMmh4cTlzbk4zL2V3PSIsInBhdF9uYW1lIjoiQnJ5Y2UgQ292ZXJ0IiwicGF0X3ZlcnNpb24iOiIxIiwidGVuYW50X2ZybiI6ImZybjpmaWxldmluZTp1cy1wcm9kOmZpbGV2aW5lLWFwcDo6OnRlbmFudFxcMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwidGVuYW50X2lkIjoiMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwianRpIjoiMkNENzYzNUFGNkU5RjQ0RjY2NzI1RTkyREY3RUI2NDciLCJpYXQiOjE3NjExNzg4NzUsInNjb3BlIjpbImVtYWlsIiwiZmlsZXZpbmUudjIuYXBpLioiLCJmdi5hcGkuZ2F0ZXdheS5hY2Nlc3MiLCJmdi5hdXRoLnRlbmFudC5yZWFkIiwib3BlbmlkIiwidGVuYW50Il0sImFtciI6WyJwZXJzb25hbF9hY2Nlc3NfdG9rZW4iXX0.E-TzpOEg6TO0ab65oq_rIambdugvK435q-yR1miardzwt5mP1Bz4aiLCurnx3FmkxhMSTnIOC8jzX73mG_lZL22FFctsB5EWt7WrUScqVAmTtG4hfPQOp4BM007nbXiKWwEXejBhyV8bsxkRkjv1gj6OlaCnvLkiDCgiD93RWpo6LSMi7nry1bNUXI2eN-0yXXrvDEiwvfY2meO1lvVwEUktLPy45_ehZ6IOc6ZIDw3zMLkqZjj046JRCsT9L8w-oNHq5xerRC4RcssIklsn9KH7M_oDrDtW20gLcTJ0mubk_HcTc1oQh-loe89UHFg-tiB63LHng9Vj3JnyZPvEjg",
|
||||
"Authorization": "Bearer eyJhbGciOiJSUzUxMiIsImtpZCI6Ijg2NjRFMkY0MDNCQjIxMzk2MzQ4NUFDOEI0MzVGMEJBOTgxNTBFN0RSUzUxMiIsInR5cCI6ImF0K2p3dCIsIng1dCI6ImhtVGk5QU83SVRsalNGckl0RFh3dXBnVkRuMCJ9.eyJuYmYiOjE3NjIzNzgxMTIsImV4cCI6MTc2MjM3OTkxMiwiaXNzIjoiaHR0cHM6Ly9pZGVudGl0eS5maWxldmluZS5jb20iLCJhdWQiOlsiZmlsZXZpbmUudjIuYXBpIiwiZnYuYXBpLmdhdGV3YXkiLCJmdi5hdXRoIl0sImNsaWVudF9pZCI6IjRGMTg3MzhDLTEwN0EtNEI4Mi1CRkFDLTMwOEYxQjZBNjI2QSIsInN1YiI6ImY3MDQ4NGZmLTQ5MjItNDliMy05MWFkLTE2YjA5Mjk5MGIzMCIsImF1dGhfdGltZSI6MTc2MjM3ODExMiwiaWRwIjoibG9jYWwiLCJwYXRfaWQiOiJoQll0K013VUJ4bm9xOTNYNVNUdnpyY0xwVFQ2M09HVHhudVcrZGFyZTVJPSIsInBhdF9uYW1lIjoiQnJ5Y2UgQ292ZXJ0IiwicGF0X3ZlcnNpb24iOiIxIiwidGVuYW50X2ZybiI6ImZybjpmaWxldmluZTp1cy1wcm9kOmZpbGV2aW5lLWFwcDo6OnRlbmFudFxcMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwidGVuYW50X2lkIjoiMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwianRpIjoiMjhFREY5RERBMUVDNTZBMEJFRTU5NjQwNTFCMUM2RDIiLCJpYXQiOjE3NjIzNzgxMTIsInNjb3BlIjpbImVtYWlsIiwiZmlsZXZpbmUudjIuYXBpLioiLCJmdi5hcGkuZ2F0ZXdheS5hY2Nlc3MiLCJmdi5hdXRoLnRlbmFudC5yZWFkIiwib3BlbmlkIiwidGVuYW50Il0sImFtciI6WyJwZXJzb25hbF9hY2Nlc3NfdG9rZW4iXX0.slTr9_NHc2FnGx9cTFDY-Ejs2kTLJbCGFvR0S_7s5_sh8vtGRkBITnmg6Asgj2L-Vxb6iyXv97d0U87P4XbHxZ-ghKLPlki3uje0V6zNkDT_l0pj54U1L4My7AAMn1E6afm3ryKvMjeVjOHbszfb6mC0qch0NCsDajEQlN_NrgMaVkopO16OFOAK4h4x_dJ3Bd-Ud8DKxYdaDSjWUe6ABCFJeANi9qexvZSecdKeD7WcxcIW4GVn_O4ZCbODp72acUTH5ID_OK6Zky-gzL14gDJbjr_vKplQwb200RnHfLPe2V6PRjKJppnIcHin3oRyQnJWiAl80D43kFaQ46F8WQ",
|
||||
"x-fv-orgid": "9227",
|
||||
"x-fv-userid": "100510"
|
||||
},
|
||||
@@ -14,49 +14,63 @@
|
||||
"status_code": 200,
|
||||
"json": {
|
||||
"personId": {
|
||||
"native": 43125866,
|
||||
"native": 43407853,
|
||||
"partner": null
|
||||
},
|
||||
"firstName": "Twin Pines Apartments (Twin Pine LLC)",
|
||||
"firstName": "Museum Park Apartments (MUSEUM PARK PROPERTY LLC)",
|
||||
"middleName": "",
|
||||
"lastName": "",
|
||||
"isSingleName": true,
|
||||
"fullName": "Twin Pines Apartments (Twin Pine LLC)",
|
||||
"pictureUrl": "/images/Default6eba3d0d-6227-44c3-b907-8311c3d4da82.png",
|
||||
"pictureKey": "Default6eba3d0d-6227-44c3-b907-8311c3d4da82.png",
|
||||
"fullName": "Museum Park Apartments (MUSEUM PARK PROPERTY LLC)",
|
||||
"pictureUrl": "/images/Default2338c514-f475-4375-aaff-ebb3b1bc7c26.png",
|
||||
"pictureKey": "Default2338c514-f475-4375-aaff-ebb3b1bc7c26.png",
|
||||
"fromCompany": "",
|
||||
"personTypes": [
|
||||
"Client/ Property"
|
||||
],
|
||||
"uniqueId": "65333863-f119-4e10-9473-992b99fbac16",
|
||||
"uniqueId": "f76a984c-ba2a-49d7-9097-07886608903b",
|
||||
"searchNames": [
|
||||
"twin",
|
||||
"pines",
|
||||
"museum",
|
||||
"park",
|
||||
"apartments",
|
||||
"(twin",
|
||||
"pine",
|
||||
"(museum",
|
||||
"property",
|
||||
"llc)",
|
||||
"twin pines apartments (twin pine llc)"
|
||||
"museum park apartments (museum park property llc)"
|
||||
],
|
||||
"phones": [],
|
||||
"emails": [],
|
||||
"addresses": [],
|
||||
"addresses": [
|
||||
{
|
||||
"addressId": {
|
||||
"native": 56496773,
|
||||
"partner": null
|
||||
},
|
||||
"line1": "465 West San Carlos Street",
|
||||
"line2": "",
|
||||
"city": "San Jose",
|
||||
"state": "CA",
|
||||
"postalCode": "95110",
|
||||
"fullAddress": "465 West San Carlos Street, San Jose, CA 95110",
|
||||
"links": {}
|
||||
}
|
||||
],
|
||||
"prefix": "",
|
||||
"hashtags": [],
|
||||
"suffix": "",
|
||||
"jobTitle": "",
|
||||
"department": "",
|
||||
"modifiedDate": "2025-10-22T15:06:31.993Z",
|
||||
"modifiedDate": "2025-11-04T20:20:09.89Z",
|
||||
"links": {
|
||||
"self": "/contacts/43125866",
|
||||
"projects": "/contacts/43125866/projects",
|
||||
"phones": "/contacts/43125866/phones",
|
||||
"emailAddresses": "/contacts/43125866/emailAddresses",
|
||||
"addresses": "/contacts/43125866/addresses"
|
||||
"self": "/contacts/43407853",
|
||||
"projects": "/contacts/43407853/projects",
|
||||
"phones": "/contacts/43407853/phones",
|
||||
"emailAddresses": "/contacts/43407853/emailAddresses",
|
||||
"addresses": "/contacts/43407853/addresses"
|
||||
}
|
||||
},
|
||||
"headers": {
|
||||
"Date": "Thu, 23 Oct 2025 00:21:16 GMT",
|
||||
"Date": "Wed, 05 Nov 2025 21:28:32 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Transfer-Encoding": "chunked",
|
||||
"Connection": "keep-alive",
|
||||
@@ -67,18 +81,18 @@
|
||||
"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 *.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 *.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 *.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://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://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.3426.3.0",
|
||||
"x-fv-correlation-id": "0a3acd7278c6486796d853ddf232e48f",
|
||||
"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.3478.1.0",
|
||||
"x-fv-correlation-id": "a56eef69d48446789013d5786fb15bde",
|
||||
"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": "0a3acd7278c6486796d853ddf232e48f",
|
||||
"x-fv-gateway-correlation-id": "a56eef69d48446789013d5786fb15bde",
|
||||
"cf-cache-status": "DYNAMIC",
|
||||
"Content-Encoding": "gzip",
|
||||
"CF-RAY": "992d12c6c95790db-SEA",
|
||||
"CF-RAY": "999f7100ab70c4cb-SEA",
|
||||
"alt-svc": "h3=\":443\"; ma=86400"
|
||||
}
|
||||
}
|
||||
|
||||
292
examples/collection.json
Normal file
292
examples/collection.json
Normal file
File diff suppressed because one or more lines are too long
49
examples/document_search.json
Normal file
49
examples/document_search.json
Normal file
@@ -0,0 +1,49 @@
|
||||
{
|
||||
"sample_request": {
|
||||
"url": "https://api.filevineapp.com/fv-app/v2/DocumentSearch?projectId=15974631&searchTerm=notice",
|
||||
"headers": {
|
||||
"Accept": "application/json",
|
||||
"Authorization": "Bearer eyJhbGciOiJSUzUxMiIsImtpZCI6Ijg2NjRFMkY0MDNCQjIxMzk2MzQ4NUFDOEI0MzVGMEJBOTgxNTBFN0RSUzUxMiIsInR5cCI6ImF0K2p3dCIsIng1dCI6ImhtVGk5QU83SVRsalNGckl0RFh3dXBnVkRuMCJ9.eyJuYmYiOjE3NjIzNzgxMTMsImV4cCI6MTc2MjM3OTkxMywiaXNzIjoiaHR0cHM6Ly9pZGVudGl0eS5maWxldmluZS5jb20iLCJhdWQiOlsiZmlsZXZpbmUudjIuYXBpIiwiZnYuYXBpLmdhdGV3YXkiLCJmdi5hdXRoIl0sImNsaWVudF9pZCI6IjRGMTg3MzhDLTEwN0EtNEI4Mi1CRkFDLTMwOEYxQjZBNjI2QSIsInN1YiI6ImY3MDQ4NGZmLTQ5MjItNDliMy05MWFkLTE2YjA5Mjk5MGIzMCIsImF1dGhfdGltZSI6MTc2MjM3ODExMywiaWRwIjoibG9jYWwiLCJwYXRfaWQiOiJoQll0K013VUJ4bm9xOTNYNVNUdnpyY0xwVFQ2M09HVHhudVcrZGFyZTVJPSIsInBhdF9uYW1lIjoiQnJ5Y2UgQ292ZXJ0IiwicGF0X3ZlcnNpb24iOiIxIiwidGVuYW50X2ZybiI6ImZybjpmaWxldmluZTp1cy1wcm9kOmZpbGV2aW5lLWFwcDo6OnRlbmFudFxcMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwidGVuYW50X2lkIjoiMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwianRpIjoiMkE3MzE1QUE2QkIxRTJCN0NDNjc0REJGNDY5RkI1NkIiLCJpYXQiOjE3NjIzNzgxMTMsInNjb3BlIjpbImVtYWlsIiwiZmlsZXZpbmUudjIuYXBpLioiLCJmdi5hcGkuZ2F0ZXdheS5hY2Nlc3MiLCJmdi5hdXRoLnRlbmFudC5yZWFkIiwib3BlbmlkIiwidGVuYW50Il0sImFtciI6WyJwZXJzb25hbF9hY2Nlc3NfdG9rZW4iXX0.FCu3LHfKJloHmVj8pDMK4U1rBR2pxhWXGpcjaBot7UNvDRohsSFOULSzvQJYLgEnD1zn6MyqcXOiDjh3H6dv-jEarswPn8DY9rP7e_U7tTLjHmmG-sarROLC7EVDtZMk7o2sMUpkAdcICy0lNKdhoZ-6LjO-y0zblfZVrXjFWKJO5WyyxkEkv436iT5PZ3CIkB_S1wdB8oTUZL4bYPydyu_jV0lwl-2wHuVGNAKPMgjvbS4qqxqpj9Xy_G1zVQ8OJOyEGVT7-8SBd9aO0xkR4nZax5zR55Wnet_VFTFIah_0I2-UCBQhuMkLtmNOaBXJu-0myEqRU3W7WCqO8cuhaw",
|
||||
"x-fv-orgid": "9227",
|
||||
"x-fv-userid": "100510"
|
||||
},
|
||||
"params": {},
|
||||
"method": "GET"
|
||||
},
|
||||
"sample_response": {
|
||||
"status_code": 200,
|
||||
"json": {
|
||||
"count": 0,
|
||||
"limit": 50,
|
||||
"hasMore": false,
|
||||
"items": [],
|
||||
"links": {}
|
||||
},
|
||||
"headers": {
|
||||
"Date": "Wed, 05 Nov 2025 21:28:34 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.3478.1.0",
|
||||
"x-fv-correlation-id": "52e9634a5a8d4fdab9cff5cbecd90eb9",
|
||||
"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": "52e9634a5a8d4fdab9cff5cbecd90eb9",
|
||||
"cf-cache-status": "DYNAMIC",
|
||||
"Content-Encoding": "gzip",
|
||||
"CF-RAY": "999f710c0cfbb997-SEA",
|
||||
"alt-svc": "h3=\":443\"; ma=86400"
|
||||
}
|
||||
}
|
||||
}
|
||||
64
examples/folder.json
Normal file
64
examples/folder.json
Normal file
@@ -0,0 +1,64 @@
|
||||
{
|
||||
"sample_request": {
|
||||
"url": "https://api.filevineapp.com/fv-app/v2/folders/138954131",
|
||||
"headers": {
|
||||
"Accept": "application/json",
|
||||
"Authorization": "Bearer eyJhbGciOiJSUzUxMiIsImtpZCI6Ijg2NjRFMkY0MDNCQjIxMzk2MzQ4NUFDOEI0MzVGMEJBOTgxNTBFN0RSUzUxMiIsInR5cCI6ImF0K2p3dCIsIng1dCI6ImhtVGk5QU83SVRsalNGckl0RFh3dXBnVkRuMCJ9.eyJuYmYiOjE3NjIzNzgxMTIsImV4cCI6MTc2MjM3OTkxMiwiaXNzIjoiaHR0cHM6Ly9pZGVudGl0eS5maWxldmluZS5jb20iLCJhdWQiOlsiZmlsZXZpbmUudjIuYXBpIiwiZnYuYXBpLmdhdGV3YXkiLCJmdi5hdXRoIl0sImNsaWVudF9pZCI6IjRGMTg3MzhDLTEwN0EtNEI4Mi1CRkFDLTMwOEYxQjZBNjI2QSIsInN1YiI6ImY3MDQ4NGZmLTQ5MjItNDliMy05MWFkLTE2YjA5Mjk5MGIzMCIsImF1dGhfdGltZSI6MTc2MjM3ODExMiwiaWRwIjoibG9jYWwiLCJwYXRfaWQiOiJoQll0K013VUJ4bm9xOTNYNVNUdnpyY0xwVFQ2M09HVHhudVcrZGFyZTVJPSIsInBhdF9uYW1lIjoiQnJ5Y2UgQ292ZXJ0IiwicGF0X3ZlcnNpb24iOiIxIiwidGVuYW50X2ZybiI6ImZybjpmaWxldmluZTp1cy1wcm9kOmZpbGV2aW5lLWFwcDo6OnRlbmFudFxcMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwidGVuYW50X2lkIjoiMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwianRpIjoiM0I1Q0E0Qzg1RkE2RDUxODU3NDEyNTEwNTNCMzc3QjQiLCJpYXQiOjE3NjIzNzgxMTIsInNjb3BlIjpbImVtYWlsIiwiZmlsZXZpbmUudjIuYXBpLioiLCJmdi5hcGkuZ2F0ZXdheS5hY2Nlc3MiLCJmdi5hdXRoLnRlbmFudC5yZWFkIiwib3BlbmlkIiwidGVuYW50Il0sImFtciI6WyJwZXJzb25hbF9hY2Nlc3NfdG9rZW4iXX0.Pf8ZU8G0eqTZ0MNCuwi55ULkQ5iDKmYKxsnn5J7D3Luj7kcaw1K53yhpuWFXnXRypmLp15XIXBiUGsfI1bi5YvdrFuqmUvgq2CEAJaOeBBnJdlBK_9cXdXizomHL14hepKNBKFhy18a90ZRDP3cbwo9oXuA9zvAvMd5LwekOXa6fPEGEIZevpgfNft8FhqZUWRGMAYd80MJRlY7fIWX3IYVYfcCH5w066okdBpQcMyaInbDwNLKb_XkyGNl4C9d_2LamQYczOD6BnTltqWSH-XUX5gNjex40X4xs3AcR0eTan1Qwp1pTC4Wnfr-qqjyLyrNh_mrO6cpr5SO-pAZ1Og",
|
||||
"x-fv-orgid": "9227",
|
||||
"x-fv-userid": "100510"
|
||||
},
|
||||
"params": {},
|
||||
"method": "GET"
|
||||
},
|
||||
"sample_response": {
|
||||
"status_code": 200,
|
||||
"json": {
|
||||
"folderId": {
|
||||
"native": 138954131,
|
||||
"partner": null
|
||||
},
|
||||
"parentId": {
|
||||
"native": 128425397,
|
||||
"partner": null
|
||||
},
|
||||
"projectId": {
|
||||
"native": 15974631,
|
||||
"partner": null
|
||||
},
|
||||
"name": "Museum Park Apartments (MUSEUM PARK PROPERTY LLC) v. Whelan, #7202, NP (1)",
|
||||
"isArchived": false,
|
||||
"links": {
|
||||
"project": "/projects/15974631",
|
||||
"self": "/folders/138954131",
|
||||
"children": "/folders/138954131/children",
|
||||
"parent": "/folders/128425397"
|
||||
}
|
||||
},
|
||||
"headers": {
|
||||
"Date": "Wed, 05 Nov 2025 21:28:33 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.3478.1.0",
|
||||
"x-fv-correlation-id": "63372fd444b1436d8924f0bed789ec29",
|
||||
"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": "63372fd444b1436d8924f0bed789ec29",
|
||||
"cf-cache-status": "DYNAMIC",
|
||||
"Content-Encoding": "gzip",
|
||||
"CF-RAY": "999f71038afb30b7-SEA",
|
||||
"alt-svc": "h3=\":443\"; ma=86400"
|
||||
}
|
||||
}
|
||||
}
|
||||
233
examples/folder_children.json
Normal file
233
examples/folder_children.json
Normal file
@@ -0,0 +1,233 @@
|
||||
{
|
||||
"sample_request": {
|
||||
"url": "https://api.filevineapp.com/fv-app/v2/folders/138954131/children",
|
||||
"headers": {
|
||||
"Accept": "application/json",
|
||||
"Authorization": "Bearer eyJhbGciOiJSUzUxMiIsImtpZCI6Ijg2NjRFMkY0MDNCQjIxMzk2MzQ4NUFDOEI0MzVGMEJBOTgxNTBFN0RSUzUxMiIsInR5cCI6ImF0K2p3dCIsIng1dCI6ImhtVGk5QU83SVRsalNGckl0RFh3dXBnVkRuMCJ9.eyJuYmYiOjE3NjIzNzgxMTMsImV4cCI6MTc2MjM3OTkxMywiaXNzIjoiaHR0cHM6Ly9pZGVudGl0eS5maWxldmluZS5jb20iLCJhdWQiOlsiZmlsZXZpbmUudjIuYXBpIiwiZnYuYXBpLmdhdGV3YXkiLCJmdi5hdXRoIl0sImNsaWVudF9pZCI6IjRGMTg3MzhDLTEwN0EtNEI4Mi1CRkFDLTMwOEYxQjZBNjI2QSIsInN1YiI6ImY3MDQ4NGZmLTQ5MjItNDliMy05MWFkLTE2YjA5Mjk5MGIzMCIsImF1dGhfdGltZSI6MTc2MjM3ODExMywiaWRwIjoibG9jYWwiLCJwYXRfaWQiOiJoQll0K013VUJ4bm9xOTNYNVNUdnpyY0xwVFQ2M09HVHhudVcrZGFyZTVJPSIsInBhdF9uYW1lIjoiQnJ5Y2UgQ292ZXJ0IiwicGF0X3ZlcnNpb24iOiIxIiwidGVuYW50X2ZybiI6ImZybjpmaWxldmluZTp1cy1wcm9kOmZpbGV2aW5lLWFwcDo6OnRlbmFudFxcMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwidGVuYW50X2lkIjoiMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwianRpIjoiQTc0QUFENTFGNDNGNDEzMDk0RjAxNTExNTVFMjMwMTQiLCJpYXQiOjE3NjIzNzgxMTMsInNjb3BlIjpbImVtYWlsIiwiZmlsZXZpbmUudjIuYXBpLioiLCJmdi5hcGkuZ2F0ZXdheS5hY2Nlc3MiLCJmdi5hdXRoLnRlbmFudC5yZWFkIiwib3BlbmlkIiwidGVuYW50Il0sImFtciI6WyJwZXJzb25hbF9hY2Nlc3NfdG9rZW4iXX0.8GKzy8wAu-OSMobN6VkSJipdDvNaVOiEPjJDrnDPFAMYK7JxVSFjh4rgocnJymA2coFRTDFaMho5-oni08Bm25TiInf7bbHA4T8B5YTdYYGLyd-ZoVS2X71FSNXXJPLMZz_C4l26wxzdPFXZYV7rhm6MaK6xGhbtYWEMlmT-W31619SR1jPIYoXcujMgmO1VXWY91i32DWA7nDNrvzyic_wvHRdKswx5rNeHIYexAVPb2tCqdOaU556a3_BRb9vBjpyZ6xD54TTypc8d734IkzpWc9S2drgcHu-Y-NXYf0Tt-PgsCRVBq6H1nNmAeTSX10t70hgF5-FZQsZu1qaJGw",
|
||||
"x-fv-orgid": "9227",
|
||||
"x-fv-userid": "100510"
|
||||
},
|
||||
"params": {},
|
||||
"method": "GET"
|
||||
},
|
||||
"sample_response": {
|
||||
"status_code": 200,
|
||||
"json": {
|
||||
"count": 8,
|
||||
"offset": 0,
|
||||
"limit": 50,
|
||||
"hasMore": false,
|
||||
"requestedFields": "*",
|
||||
"items": [
|
||||
{
|
||||
"folderId": {
|
||||
"native": 138954134,
|
||||
"partner": null
|
||||
},
|
||||
"parentId": {
|
||||
"native": 138954131,
|
||||
"partner": null
|
||||
},
|
||||
"projectId": {
|
||||
"native": 15974631,
|
||||
"partner": null
|
||||
},
|
||||
"name": "5. CMP Prep & File",
|
||||
"isArchived": false,
|
||||
"links": {
|
||||
"project": "/projects/15974631",
|
||||
"self": "/folders/138954134",
|
||||
"children": "/folders/138954134/children",
|
||||
"parent": "/folders/138954131"
|
||||
}
|
||||
},
|
||||
{
|
||||
"folderId": {
|
||||
"native": 138954135,
|
||||
"partner": null
|
||||
},
|
||||
"parentId": {
|
||||
"native": 138954131,
|
||||
"partner": null
|
||||
},
|
||||
"projectId": {
|
||||
"native": 15974631,
|
||||
"partner": null
|
||||
},
|
||||
"name": "2. Exhibits",
|
||||
"isArchived": false,
|
||||
"links": {
|
||||
"project": "/projects/15974631",
|
||||
"self": "/folders/138954135",
|
||||
"children": "/folders/138954135/children",
|
||||
"parent": "/folders/138954131"
|
||||
}
|
||||
},
|
||||
{
|
||||
"folderId": {
|
||||
"native": 138954136,
|
||||
"partner": null
|
||||
},
|
||||
"parentId": {
|
||||
"native": 138954131,
|
||||
"partner": null
|
||||
},
|
||||
"projectId": {
|
||||
"native": 15974631,
|
||||
"partner": null
|
||||
},
|
||||
"name": "3. Intake- Forms and Notes",
|
||||
"isArchived": false,
|
||||
"links": {
|
||||
"project": "/projects/15974631",
|
||||
"self": "/folders/138954136",
|
||||
"children": "/folders/138954136/children",
|
||||
"parent": "/folders/138954131"
|
||||
}
|
||||
},
|
||||
{
|
||||
"folderId": {
|
||||
"native": 138954137,
|
||||
"partner": null
|
||||
},
|
||||
"parentId": {
|
||||
"native": 138954131,
|
||||
"partner": null
|
||||
},
|
||||
"projectId": {
|
||||
"native": 15974631,
|
||||
"partner": null
|
||||
},
|
||||
"name": "8. Motion Prep",
|
||||
"isArchived": false,
|
||||
"links": {
|
||||
"project": "/projects/15974631",
|
||||
"self": "/folders/138954137",
|
||||
"children": "/folders/138954137/children",
|
||||
"parent": "/folders/138954131"
|
||||
}
|
||||
},
|
||||
{
|
||||
"folderId": {
|
||||
"native": 138954138,
|
||||
"partner": null
|
||||
},
|
||||
"parentId": {
|
||||
"native": 138954131,
|
||||
"partner": null
|
||||
},
|
||||
"projectId": {
|
||||
"native": 15974631,
|
||||
"partner": null
|
||||
},
|
||||
"name": "4. Notice Prep",
|
||||
"isArchived": false,
|
||||
"links": {
|
||||
"project": "/projects/15974631",
|
||||
"self": "/folders/138954138",
|
||||
"children": "/folders/138954138/children",
|
||||
"parent": "/folders/138954131"
|
||||
}
|
||||
},
|
||||
{
|
||||
"folderId": {
|
||||
"native": 138954139,
|
||||
"partner": null
|
||||
},
|
||||
"parentId": {
|
||||
"native": 138954131,
|
||||
"partner": null
|
||||
},
|
||||
"projectId": {
|
||||
"native": 15974631,
|
||||
"partner": null
|
||||
},
|
||||
"name": "1. Pleadings & Filed Docs",
|
||||
"isArchived": false,
|
||||
"links": {
|
||||
"project": "/projects/15974631",
|
||||
"self": "/folders/138954139",
|
||||
"children": "/folders/138954139/children",
|
||||
"parent": "/folders/138954131"
|
||||
}
|
||||
},
|
||||
{
|
||||
"folderId": {
|
||||
"native": 138954140,
|
||||
"partner": null
|
||||
},
|
||||
"parentId": {
|
||||
"native": 138954131,
|
||||
"partner": null
|
||||
},
|
||||
"projectId": {
|
||||
"native": 15974631,
|
||||
"partner": null
|
||||
},
|
||||
"name": "6. Service & Default Prep",
|
||||
"isArchived": false,
|
||||
"links": {
|
||||
"project": "/projects/15974631",
|
||||
"self": "/folders/138954140",
|
||||
"children": "/folders/138954140/children",
|
||||
"parent": "/folders/138954131"
|
||||
}
|
||||
},
|
||||
{
|
||||
"folderId": {
|
||||
"native": 138954141,
|
||||
"partner": null
|
||||
},
|
||||
"parentId": {
|
||||
"native": 138954131,
|
||||
"partner": null
|
||||
},
|
||||
"projectId": {
|
||||
"native": 15974631,
|
||||
"partner": null
|
||||
},
|
||||
"name": "7. Trial Prep",
|
||||
"isArchived": false,
|
||||
"links": {
|
||||
"project": "/projects/15974631",
|
||||
"self": "/folders/138954141",
|
||||
"children": "/folders/138954141/children",
|
||||
"parent": "/folders/138954131"
|
||||
}
|
||||
}
|
||||
],
|
||||
"links": {
|
||||
"self": "/folders/138954131/children?offset=0&limit=50&requestedFields=*",
|
||||
"prev": null,
|
||||
"next": null,
|
||||
"parent": "/folders/128425397"
|
||||
}
|
||||
},
|
||||
"headers": {
|
||||
"Date": "Wed, 05 Nov 2025 21:28:33 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.3478.1.0",
|
||||
"x-fv-correlation-id": "39c5e8d5dcfa4cee8dcbe67c4830a092",
|
||||
"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": "39c5e8d5dcfa4cee8dcbe67c4830a092",
|
||||
"cf-cache-status": "DYNAMIC",
|
||||
"Content-Encoding": "gzip",
|
||||
"CF-RAY": "999f710758b27666-SEA",
|
||||
"alt-svc": "h3=\":443\"; ma=86400"
|
||||
}
|
||||
}
|
||||
}
|
||||
292
examples/forms__complaintInfo.json
Normal file
292
examples/forms__complaintInfo.json
Normal file
File diff suppressed because one or more lines are too long
162
examples/forms__newFileReview.json
Normal file
162
examples/forms__newFileReview.json
Normal file
@@ -0,0 +1,162 @@
|
||||
{
|
||||
"sample_request": {
|
||||
"url": "https://api.filevineapp.com/fv-app/v2/Projects/15974631/Forms/newFileReview",
|
||||
"headers": {
|
||||
"Accept": "application/json",
|
||||
"Authorization": "Bearer eyJhbGciOiJSUzUxMiIsImtpZCI6Ijg2NjRFMkY0MDNCQjIxMzk2MzQ4NUFDOEI0MzVGMEJBOTgxNTBFN0RSUzUxMiIsInR5cCI6ImF0K2p3dCIsIng1dCI6ImhtVGk5QU83SVRsalNGckl0RFh3dXBnVkRuMCJ9.eyJuYmYiOjE3NjIzNzg1NjcsImV4cCI6MTc2MjM4MDM2NywiaXNzIjoiaHR0cHM6Ly9pZGVudGl0eS5maWxldmluZS5jb20iLCJhdWQiOlsiZmlsZXZpbmUudjIuYXBpIiwiZnYuYXBpLmdhdGV3YXkiLCJmdi5hdXRoIl0sImNsaWVudF9pZCI6IjRGMTg3MzhDLTEwN0EtNEI4Mi1CRkFDLTMwOEYxQjZBNjI2QSIsInN1YiI6ImY3MDQ4NGZmLTQ5MjItNDliMy05MWFkLTE2YjA5Mjk5MGIzMCIsImF1dGhfdGltZSI6MTc2MjM3ODU2NywiaWRwIjoibG9jYWwiLCJwYXRfaWQiOiJoQll0K013VUJ4bm9xOTNYNVNUdnpyY0xwVFQ2M09HVHhudVcrZGFyZTVJPSIsInBhdF9uYW1lIjoiQnJ5Y2UgQ292ZXJ0IiwicGF0X3ZlcnNpb24iOiIxIiwidGVuYW50X2ZybiI6ImZybjpmaWxldmluZTp1cy1wcm9kOmZpbGV2aW5lLWFwcDo6OnRlbmFudFxcMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwidGVuYW50X2lkIjoiMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwianRpIjoiQTUxODc4MkMyNkZBNkVBMDNDNUFFOEJEMUZCOURDNzgiLCJpYXQiOjE3NjIzNzg1NjcsInNjb3BlIjpbImVtYWlsIiwiZmlsZXZpbmUudjIuYXBpLioiLCJmdi5hcGkuZ2F0ZXdheS5hY2Nlc3MiLCJmdi5hdXRoLnRlbmFudC5yZWFkIiwib3BlbmlkIiwidGVuYW50Il0sImFtciI6WyJwZXJzb25hbF9hY2Nlc3NfdG9rZW4iXX0.R6ma9rIVFDrazbAFh5wmie-tD80UOgeEZlFk3EyrkoQw-thY2zu4IYJzwvBbQbXigg_SJ_DOhg4HyhEV2o9rpHi9mQh0U1KXiy61lFOIGxl1mYrqN7vtg1LxTOXU_nCHoNFJ_gu0EkvOCcMVJfLd99GItT7wWXqldqegzrLueBHDUqwsYDd7jyeffPD_2PmI0lA8WXDxSB4WrOduRkAOSdSHDt4lZMybhQKxaBJ470iumtUiNwT9fdjO7hXWnAQSTBSA26cAcy3SOMlg16ZTWOkVt-7U7j0wnYN9MJlQWG3Tqqds5Ft1J8dloqQXriu_fWuq6JSMLoZ7hxoySXjvqQ",
|
||||
"x-fv-orgid": "9227",
|
||||
"x-fv-userid": "100510"
|
||||
},
|
||||
"params": {},
|
||||
"method": "GET"
|
||||
},
|
||||
"sample_response": {
|
||||
"status_code": 200,
|
||||
"json": {
|
||||
"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.0,
|
||||
"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.0,
|
||||
"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
|
||||
},
|
||||
"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": "Wed, 05 Nov 2025 21:36:08 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.3478.1.0",
|
||||
"x-fv-correlation-id": "7b812c03fc7d43268db5f92417c09684",
|
||||
"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": "7b812c03fc7d43268db5f92417c09684",
|
||||
"cf-cache-status": "DYNAMIC",
|
||||
"Content-Encoding": "gzip",
|
||||
"CF-RAY": "999f7c21dd504f73-SEA",
|
||||
"alt-svc": "h3=\":443\"; ma=86400"
|
||||
}
|
||||
}
|
||||
}
|
||||
91
examples/project.json
Normal file
91
examples/project.json
Normal file
@@ -0,0 +1,91 @@
|
||||
{
|
||||
"sample_request": {
|
||||
"url": "https://api.filevineapp.com/fv-app/v2/projects/15974631",
|
||||
"headers": {
|
||||
"Accept": "application/json",
|
||||
"Authorization": "Bearer eyJhbGciOiJSUzUxMiIsImtpZCI6Ijg2NjRFMkY0MDNCQjIxMzk2MzQ4NUFDOEI0MzVGMEJBOTgxNTBFN0RSUzUxMiIsInR5cCI6ImF0K2p3dCIsIng1dCI6ImhtVGk5QU83SVRsalNGckl0RFh3dXBnVkRuMCJ9.eyJuYmYiOjE3NjIzNzgxMTAsImV4cCI6MTc2MjM3OTkxMCwiaXNzIjoiaHR0cHM6Ly9pZGVudGl0eS5maWxldmluZS5jb20iLCJhdWQiOlsiZmlsZXZpbmUudjIuYXBpIiwiZnYuYXBpLmdhdGV3YXkiLCJmdi5hdXRoIl0sImNsaWVudF9pZCI6IjRGMTg3MzhDLTEwN0EtNEI4Mi1CRkFDLTMwOEYxQjZBNjI2QSIsInN1YiI6ImY3MDQ4NGZmLTQ5MjItNDliMy05MWFkLTE2YjA5Mjk5MGIzMCIsImF1dGhfdGltZSI6MTc2MjM3ODExMCwiaWRwIjoibG9jYWwiLCJwYXRfaWQiOiJoQll0K013VUJ4bm9xOTNYNVNUdnpyY0xwVFQ2M09HVHhudVcrZGFyZTVJPSIsInBhdF9uYW1lIjoiQnJ5Y2UgQ292ZXJ0IiwicGF0X3ZlcnNpb24iOiIxIiwidGVuYW50X2ZybiI6ImZybjpmaWxldmluZTp1cy1wcm9kOmZpbGV2aW5lLWFwcDo6OnRlbmFudFxcMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwidGVuYW50X2lkIjoiMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwianRpIjoiMTQ0OURBOTkwNzZERTBCMTg3Q0RCODg0OUE3NzI1OEUiLCJpYXQiOjE3NjIzNzgxMTAsInNjb3BlIjpbImVtYWlsIiwiZmlsZXZpbmUudjIuYXBpLioiLCJmdi5hcGkuZ2F0ZXdheS5hY2Nlc3MiLCJmdi5hdXRoLnRlbmFudC5yZWFkIiwib3BlbmlkIiwidGVuYW50Il0sImFtciI6WyJwZXJzb25hbF9hY2Nlc3NfdG9rZW4iXX0.DZlT9HzqkcNZO_Qk9gdfS70FTnTULRPPuVygzfkRSLuG4ypRQ1azmBZK61sG4aj3oGCevkvPLdGWt0zt71OXrFu9jyubf4BGLbN5GPwlI-A_wHQMGVN-AdBnauFuH5cluo_FaaR62T4p3F9hPosiwwBa6vGRsmiZj3dstA0wUY88pGFK9RNj3AfNaWiM8ndB-3P7GqnOROHE5R23U8IoXEvtIIGWmZ8CGI6Jmmpf9a9wr39Y3pA1JSZinrLCBAiG82VS0fJN-f9-OUfMl4z4lgj5zft4YBxJ3oCjqK8HuKS85BSVx_c6P5NpIgohRn1v-0uONhHkf9m7jprxhYI3Aw",
|
||||
"x-fv-orgid": "9227",
|
||||
"x-fv-userid": "100510"
|
||||
},
|
||||
"params": {},
|
||||
"method": "GET"
|
||||
},
|
||||
"sample_response": {
|
||||
"status_code": 200,
|
||||
"json": {
|
||||
"projectTypeCode": "EVICT",
|
||||
"rootDocFolderId": {
|
||||
"native": 138954131,
|
||||
"partner": null
|
||||
},
|
||||
"phaseName": "Service of Process",
|
||||
"phaseDate": "2025-11-04T20:59:21.297Z",
|
||||
"clientName": "Museum Park Apartments (MUSEUM PARK PROPERTY LLC)",
|
||||
"clientPictureURL": "/images/Default2338c514-f475-4375-aaff-ebb3b1bc7c26.png",
|
||||
"clientPictureKey": "/images/Default2338c514-f475-4375-aaff-ebb3b1bc7c26.png",
|
||||
"clientPictureS3Url": "",
|
||||
"firstPrimaryName": "Michele Le",
|
||||
"firstPrimaryUsername": "michelle601",
|
||||
"isArchived": false,
|
||||
"lastActivity": "2025-11-04T20:57:53.923Z",
|
||||
"uniqueKey": "MuseumParkApartmentsZ15974631",
|
||||
"projectOrClientName": "Museum Park Apartments (MUSEUM PARK PROPERTY LLC) v. Whelan, #7202, NP",
|
||||
"hashtags": [],
|
||||
"orgId": 9227,
|
||||
"projectEmailAddress": "MuseumParkApartmentsZ15974631@rothbardlawgroup.filevineapp.com",
|
||||
"createdDate": "2025-11-04T20:20:15.383Z",
|
||||
"projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15974631",
|
||||
"projectId": {
|
||||
"native": 15974631,
|
||||
"partner": null
|
||||
},
|
||||
"projectTypeId": {
|
||||
"native": 34111,
|
||||
"partner": null
|
||||
},
|
||||
"clientId": {
|
||||
"native": 43407853,
|
||||
"partner": null
|
||||
},
|
||||
"contactNumber": "0",
|
||||
"projectName": "Museum Park Apartments (MUSEUM PARK PROPERTY LLC) v. Whelan, #7202, NP",
|
||||
"phaseId": {
|
||||
"native": 210761,
|
||||
"partner": null
|
||||
},
|
||||
"links": {
|
||||
"self": "/projects/15974631",
|
||||
"projectType": "/projecttypes/34111",
|
||||
"rootFolder": "/folders/138954131",
|
||||
"client": "/contacts/43407853",
|
||||
"contacts": "/projects/15974631/contacts"
|
||||
}
|
||||
},
|
||||
"headers": {
|
||||
"Date": "Wed, 05 Nov 2025 21:28:30 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.3478.1.0",
|
||||
"x-fv-correlation-id": "18f5b5b8fc9f4b4da82ec5a170ded7aa",
|
||||
"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": "18f5b5b8fc9f4b4da82ec5a170ded7aa",
|
||||
"cf-cache-status": "DYNAMIC",
|
||||
"Content-Encoding": "gzip",
|
||||
"CF-RAY": "999f70f74e88ebb7-SEA",
|
||||
"alt-svc": "h3=\":443\"; ma=86400"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"sample_request": {
|
||||
"url": "https://api.filevineapp.com/fv-app/v2/Projects/15905506/contacts",
|
||||
"url": "https://api.filevineapp.com/fv-app/v2/Projects/15974631/contacts",
|
||||
"headers": {
|
||||
"Accept": "application/json",
|
||||
"Authorization": "Bearer eyJhbGciOiJSUzUxMiIsImtpZCI6Ijg2NjRFMkY0MDNCQjIxMzk2MzQ4NUFDOEI0MzVGMEJBOTgxNTBFN0RSUzUxMiIsInR5cCI6ImF0K2p3dCIsIng1dCI6ImhtVGk5QU83SVRsalNGckl0RFh3dXBnVkRuMCJ9.eyJuYmYiOjE3NjExNzg4NzUsImV4cCI6MTc2MTE4MDY3NSwiaXNzIjoiaHR0cHM6Ly9pZGVudGl0eS5maWxldmluZS5jb20iLCJhdWQiOlsiZmlsZXZpbmUudjIuYXBpIiwiZnYuYXBpLmdhdGV3YXkiLCJmdi5hdXRoIl0sImNsaWVudF9pZCI6IjRGMTg3MzhDLTEwN0EtNEI4Mi1CRkFDLTMwOEYxQjZBNjI2QSIsInN1YiI6ImY3MDQ4NGZmLTQ5MjItNDliMy05MWFkLTE2YjA5Mjk5MGIzMCIsImF1dGhfdGltZSI6MTc2MTE3ODg3NSwiaWRwIjoibG9jYWwiLCJwYXRfaWQiOiJmUkEwbHRoSnp5aTBBWU9ZS1F4WGVlckczUHc1MXEyMmh4cTlzbk4zL2V3PSIsInBhdF9uYW1lIjoiQnJ5Y2UgQ292ZXJ0IiwicGF0X3ZlcnNpb24iOiIxIiwidGVuYW50X2ZybiI6ImZybjpmaWxldmluZTp1cy1wcm9kOmZpbGV2aW5lLWFwcDo6OnRlbmFudFxcMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwidGVuYW50X2lkIjoiMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwianRpIjoiRTg1ODdBNDY3NkI1OTg2M0U0OTAxNkNFRTYxNDNFNjciLCJpYXQiOjE3NjExNzg4NzUsInNjb3BlIjpbImVtYWlsIiwiZmlsZXZpbmUudjIuYXBpLioiLCJmdi5hcGkuZ2F0ZXdheS5hY2Nlc3MiLCJmdi5hdXRoLnRlbmFudC5yZWFkIiwib3BlbmlkIiwidGVuYW50Il0sImFtciI6WyJwZXJzb25hbF9hY2Nlc3NfdG9rZW4iXX0.mjeEZUAE466DLME0jmRu_znERUH6_85AitHzgDrQlWPpeIy_18-B5x9hG2-wAp2s_WGdjn2eRc8qmy5wD9vbw4k1-L3HNhfI_9s24MGbanXWeu9eGHenY092D12W4eoJYlYCCpbGhqPNbql021hbU6TZTTGs2IMfwBy9k5H2HVCkPd2NbswuEsTt_M1XUUe-6duqEIGWdYQ097xGcVl3tGYgAxR6nyICyiovxVRZXsuKGK0a5r_7KKSZwM6v1brB9V08oBBsGoTRaLe_uxG-YHrMSPZ0JXvLxvzT8XXLh5RMXd2ijekHQ9nMKehmxojiQKg20r8_4kUtzZlkyeL_WQ",
|
||||
"Authorization": "Bearer eyJhbGciOiJSUzUxMiIsImtpZCI6Ijg2NjRFMkY0MDNCQjIxMzk2MzQ4NUFDOEI0MzVGMEJBOTgxNTBFN0RSUzUxMiIsInR5cCI6ImF0K2p3dCIsIng1dCI6ImhtVGk5QU83SVRsalNGckl0RFh3dXBnVkRuMCJ9.eyJuYmYiOjE3NjIzNzgxMTEsImV4cCI6MTc2MjM3OTkxMSwiaXNzIjoiaHR0cHM6Ly9pZGVudGl0eS5maWxldmluZS5jb20iLCJhdWQiOlsiZmlsZXZpbmUudjIuYXBpIiwiZnYuYXBpLmdhdGV3YXkiLCJmdi5hdXRoIl0sImNsaWVudF9pZCI6IjRGMTg3MzhDLTEwN0EtNEI4Mi1CRkFDLTMwOEYxQjZBNjI2QSIsInN1YiI6ImY3MDQ4NGZmLTQ5MjItNDliMy05MWFkLTE2YjA5Mjk5MGIzMCIsImF1dGhfdGltZSI6MTc2MjM3ODExMCwiaWRwIjoibG9jYWwiLCJwYXRfaWQiOiJoQll0K013VUJ4bm9xOTNYNVNUdnpyY0xwVFQ2M09HVHhudVcrZGFyZTVJPSIsInBhdF9uYW1lIjoiQnJ5Y2UgQ292ZXJ0IiwicGF0X3ZlcnNpb24iOiIxIiwidGVuYW50X2ZybiI6ImZybjpmaWxldmluZTp1cy1wcm9kOmZpbGV2aW5lLWFwcDo6OnRlbmFudFxcMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwidGVuYW50X2lkIjoiMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwianRpIjoiRTNERkFFNUNBQzA0N0FCMDVGNzE0MjQ1QTQ2MDEzQTciLCJpYXQiOjE3NjIzNzgxMTEsInNjb3BlIjpbImVtYWlsIiwiZmlsZXZpbmUudjIuYXBpLioiLCJmdi5hcGkuZ2F0ZXdheS5hY2Nlc3MiLCJmdi5hdXRoLnRlbmFudC5yZWFkIiwib3BlbmlkIiwidGVuYW50Il0sImFtciI6WyJwZXJzb25hbF9hY2Nlc3NfdG9rZW4iXX0.sDbqLownX8ywTZB2YFBDok88aa7J_S0Q7MQULQmNt512GK-ksgnUPE1rvcZ8xPQo4myOrmSWpNTB-MTjgIOdyVNlm_ZYHCJP3CL06HJA3VqeQt8DbXgLr4hBNZHuzLvfVumeCdx3QRP035atX6qTvU_AsZIcYK-EgW0HerHnw9lNAkVvOoU9-5LGMp542xS4DQN9lohyEQocB2tfIJJZBlyYgxIm4F-4KrQCql9VQ8o9FK6Wv9b-WcyCVk_WxeiZEIrI_Hv3pPRXBKDWBUXTPrdVYUBC6oubR-CUKofStBVWvEEj26lbMSWCtOAtsMK8MK8U8azB76bG5amTuQOt_g",
|
||||
"x-fv-orgid": "9227",
|
||||
"x-fv-userid": "100510"
|
||||
},
|
||||
@@ -13,7 +13,7 @@
|
||||
"sample_response": {
|
||||
"status_code": 200,
|
||||
"json": {
|
||||
"count": 3,
|
||||
"count": 4,
|
||||
"offset": 0,
|
||||
"limit": 50,
|
||||
"hasMore": false,
|
||||
@@ -21,48 +21,46 @@
|
||||
"items": [
|
||||
{
|
||||
"projectId": {
|
||||
"native": 15905506,
|
||||
"native": 15974631,
|
||||
"partner": null
|
||||
},
|
||||
"orgContactId": {
|
||||
"native": 43125848,
|
||||
"native": 43407877,
|
||||
"partner": null
|
||||
},
|
||||
"roles": [
|
||||
"Property Contacts: Property Manager 1"
|
||||
"Property Contacts: Property Manager 1",
|
||||
"Complaint Info: Complaint Verification Contact"
|
||||
],
|
||||
"orgContact": {
|
||||
"personId": {
|
||||
"native": 43125848,
|
||||
"native": 43407877,
|
||||
"partner": null
|
||||
},
|
||||
"firstName": "Brian",
|
||||
"middleName": "Robert",
|
||||
"lastName": "Testy",
|
||||
"firstName": "Samantha",
|
||||
"lastName": "Norton",
|
||||
"isSingleName": false,
|
||||
"fullName": "Brian Robert Testy",
|
||||
"primaryEmail": "brianskarbek@gmail.com",
|
||||
"pictureUrl": "/images/Default64896de9-7ee8-47a4-bcd2-1df186e6230a.png",
|
||||
"pictureKey": "Default64896de9-7ee8-47a4-bcd2-1df186e6230a.png",
|
||||
"fullName": "Samantha Norton",
|
||||
"primaryEmail": "michele@toddrothbardlaw.com",
|
||||
"pictureUrl": "/images/Default86c987b2-9505-4182-9486-48c7fb607693.png",
|
||||
"pictureKey": "Default86c987b2-9505-4182-9486-48c7fb607693.png",
|
||||
"personTypes": [
|
||||
"Property Manager"
|
||||
],
|
||||
"uniqueId": "4daf252f-db81-4ca7-b7e4-0a5fd801170c",
|
||||
"uniqueId": "ea8be4a2-e226-452f-80ae-da25efb05b62",
|
||||
"searchNames": [
|
||||
"brian",
|
||||
"robert",
|
||||
"testy",
|
||||
"brian robert testy",
|
||||
"brian testy"
|
||||
"samantha",
|
||||
"norton",
|
||||
"samantha norton"
|
||||
],
|
||||
"phones": [
|
||||
{
|
||||
"phoneId": {
|
||||
"native": 74619813,
|
||||
"native": 74943071,
|
||||
"partner": null
|
||||
},
|
||||
"number": "4084821733",
|
||||
"rawNumber": "4084821733",
|
||||
"number": "(408) 712-0299",
|
||||
"rawNumber": "4087120299",
|
||||
"isSmsable": false,
|
||||
"isFaxable": false,
|
||||
"links": {}
|
||||
@@ -71,47 +69,116 @@
|
||||
"emails": [
|
||||
{
|
||||
"emailId": {
|
||||
"native": 19265473,
|
||||
"native": 19359086,
|
||||
"partner": null
|
||||
},
|
||||
"address": "brianskarbek@gmail.com",
|
||||
"address": "michele@toddrothbardlaw.com",
|
||||
"links": {}
|
||||
}
|
||||
],
|
||||
"addresses": [
|
||||
{
|
||||
"addressId": {
|
||||
"native": 56313190,
|
||||
"native": 56496788,
|
||||
"partner": null
|
||||
},
|
||||
"line1": "2926 Neal Ave",
|
||||
"line1": "465 West San Carlos Street",
|
||||
"line2": "",
|
||||
"city": "San Jose",
|
||||
"state": "CA",
|
||||
"postalCode": "95128",
|
||||
"fullAddress": "2926 Neal Ave, San Jose, CA 95128",
|
||||
"postalCode": "95110",
|
||||
"fullAddress": "465 West San Carlos Street, San Jose, CA 95110",
|
||||
"links": {}
|
||||
}
|
||||
],
|
||||
"hashtags": [],
|
||||
"modifiedDate": "2025-10-18T14:24:54.16Z",
|
||||
"modifiedDate": "2025-11-04T20:26:41.3Z",
|
||||
"links": {
|
||||
"self": "/contacts/43125848",
|
||||
"projects": "/contacts/43125848/projects",
|
||||
"phones": "/contacts/43125848/phones",
|
||||
"emailAddresses": "/contacts/43125848/emailAddresses",
|
||||
"addresses": "/contacts/43125848/addresses"
|
||||
"self": "/contacts/43407877",
|
||||
"projects": "/contacts/43407877/projects",
|
||||
"phones": "/contacts/43407877/phones",
|
||||
"emailAddresses": "/contacts/43407877/emailAddresses",
|
||||
"addresses": "/contacts/43407877/addresses"
|
||||
}
|
||||
},
|
||||
"links": {}
|
||||
},
|
||||
{
|
||||
"projectId": {
|
||||
"native": 15905506,
|
||||
"native": 15974631,
|
||||
"partner": null
|
||||
},
|
||||
"orgContactId": {
|
||||
"native": 43193362,
|
||||
"native": 43407894,
|
||||
"partner": null
|
||||
},
|
||||
"roles": [
|
||||
"Property Contacts: Regional Property Manager"
|
||||
],
|
||||
"orgContact": {
|
||||
"personId": {
|
||||
"native": 43407894,
|
||||
"partner": null
|
||||
},
|
||||
"firstName": "Erica",
|
||||
"lastName": "Rangel",
|
||||
"isSingleName": false,
|
||||
"fullName": "Erica Rangel",
|
||||
"primaryEmail": "michele@toddrothbardlaw.com",
|
||||
"pictureUrl": "/images/Defaultce125e61-d1d2-4c3d-94fe-c2408b020204.png",
|
||||
"pictureKey": "Defaultce125e61-d1d2-4c3d-94fe-c2408b020204.png",
|
||||
"personTypes": [
|
||||
"Property Manager"
|
||||
],
|
||||
"uniqueId": "c18b64f1-1451-4143-afd5-8f23cd32ea83",
|
||||
"searchNames": [
|
||||
"erica",
|
||||
"rangel",
|
||||
"erica rangel"
|
||||
],
|
||||
"phones": [
|
||||
{
|
||||
"phoneId": {
|
||||
"native": 74943067,
|
||||
"partner": null
|
||||
},
|
||||
"number": "(408) 784-1930",
|
||||
"rawNumber": "4087841930",
|
||||
"isSmsable": false,
|
||||
"isFaxable": false,
|
||||
"links": {}
|
||||
}
|
||||
],
|
||||
"emails": [
|
||||
{
|
||||
"emailId": {
|
||||
"native": 19359083,
|
||||
"partner": null
|
||||
},
|
||||
"address": "michele@toddrothbardlaw.com",
|
||||
"links": {}
|
||||
}
|
||||
],
|
||||
"addresses": [],
|
||||
"hashtags": [],
|
||||
"modifiedDate": "2025-11-04T20:26:20.393Z",
|
||||
"links": {
|
||||
"self": "/contacts/43407894",
|
||||
"projects": "/contacts/43407894/projects",
|
||||
"phones": "/contacts/43407894/phones",
|
||||
"emailAddresses": "/contacts/43407894/emailAddresses",
|
||||
"addresses": "/contacts/43407894/addresses"
|
||||
}
|
||||
},
|
||||
"links": {}
|
||||
},
|
||||
{
|
||||
"projectId": {
|
||||
"native": 15974631,
|
||||
"partner": null
|
||||
},
|
||||
"orgContactId": {
|
||||
"native": 43407932,
|
||||
"partner": null
|
||||
},
|
||||
"roles": [
|
||||
@@ -119,92 +186,92 @@
|
||||
],
|
||||
"orgContact": {
|
||||
"personId": {
|
||||
"native": 43193362,
|
||||
"native": 43407932,
|
||||
"partner": null
|
||||
},
|
||||
"firstName": "Bad",
|
||||
"lastName": "Guy",
|
||||
"firstName": "Stephanie",
|
||||
"lastName": "Whelan",
|
||||
"isSingleName": false,
|
||||
"fullName": "Bad Guy",
|
||||
"pictureUrl": "/images/Defaultf6812c31-f9e7-4961-b7da-89adcd48dbac.png",
|
||||
"pictureKey": "Defaultf6812c31-f9e7-4961-b7da-89adcd48dbac.png",
|
||||
"fullName": "Stephanie Whelan",
|
||||
"pictureUrl": "/images/Default94c18da6-239b-4c00-975b-d6449c9e88a7.png",
|
||||
"pictureKey": "Default94c18da6-239b-4c00-975b-d6449c9e88a7.png",
|
||||
"personTypes": [
|
||||
"Defendant"
|
||||
],
|
||||
"uniqueId": "3368bc70-4aed-4349-9fd6-0cd2dca654ae",
|
||||
"uniqueId": "adee1c85-656d-45df-9a31-a57cc627ad4b",
|
||||
"searchNames": [
|
||||
"bad",
|
||||
"guy",
|
||||
"bad guy"
|
||||
"stephanie",
|
||||
"whelan",
|
||||
"stephanie whelan"
|
||||
],
|
||||
"phones": [],
|
||||
"emails": [],
|
||||
"addresses": [],
|
||||
"hashtags": [],
|
||||
"modifiedDate": "2025-10-22T15:29:38.463Z",
|
||||
"modifiedDate": "2025-11-04T20:32:25.623Z",
|
||||
"links": {
|
||||
"self": "/contacts/43193362",
|
||||
"projects": "/contacts/43193362/projects",
|
||||
"phones": "/contacts/43193362/phones",
|
||||
"emailAddresses": "/contacts/43193362/emailAddresses",
|
||||
"addresses": "/contacts/43193362/addresses"
|
||||
"self": "/contacts/43407932",
|
||||
"projects": "/contacts/43407932/projects",
|
||||
"phones": "/contacts/43407932/phones",
|
||||
"emailAddresses": "/contacts/43407932/emailAddresses",
|
||||
"addresses": "/contacts/43407932/addresses"
|
||||
}
|
||||
},
|
||||
"links": {}
|
||||
},
|
||||
{
|
||||
"projectId": {
|
||||
"native": 15905506,
|
||||
"native": 15974631,
|
||||
"partner": null
|
||||
},
|
||||
"orgContactId": {
|
||||
"native": 43182533,
|
||||
"native": 43212479,
|
||||
"partner": null
|
||||
},
|
||||
"roles": [
|
||||
"Matter Overview: Signing Attorney"
|
||||
"Matter Random Info: Signing Attorney"
|
||||
],
|
||||
"orgContact": {
|
||||
"personId": {
|
||||
"native": 43182533,
|
||||
"native": 43212479,
|
||||
"partner": null
|
||||
},
|
||||
"firstName": "Brian",
|
||||
"lastName": "Skarbek",
|
||||
"firstName": "Michele",
|
||||
"lastName": "Le",
|
||||
"isSingleName": false,
|
||||
"fullName": "Brian Skarbek",
|
||||
"primaryEmail": "Brian@ToddRothbardLaw.com",
|
||||
"pictureUrl": "/images/Default96eecdd8-0702-4099-9ef2-254bb3a788fa.png",
|
||||
"pictureKey": "Default96eecdd8-0702-4099-9ef2-254bb3a788fa.png",
|
||||
"fullName": "Michele Le",
|
||||
"primaryEmail": "michele@toddrothbardlaw.com",
|
||||
"pictureUrl": "/images/Default047885b6-2add-4ba0-9408-d18092530180.png",
|
||||
"pictureKey": "Default047885b6-2add-4ba0-9408-d18092530180.png",
|
||||
"personTypes": [
|
||||
"Attorney"
|
||||
],
|
||||
"uniqueId": "f0cab457-e837-4341-843d-a8afb4265beb",
|
||||
"uniqueId": "ad9a4bf1-e913-4d43-b813-05a7c55025f4",
|
||||
"searchNames": [
|
||||
"brian",
|
||||
"skarbek",
|
||||
"brian skarbek"
|
||||
"michele",
|
||||
"le",
|
||||
"michele le"
|
||||
],
|
||||
"phones": [],
|
||||
"emails": [
|
||||
{
|
||||
"emailId": {
|
||||
"native": 19294763,
|
||||
"native": 19307621,
|
||||
"partner": null
|
||||
},
|
||||
"address": "Brian@ToddRothbardLaw.com",
|
||||
"address": "michele@toddrothbardlaw.com",
|
||||
"links": {}
|
||||
}
|
||||
],
|
||||
"addresses": [],
|
||||
"hashtags": [],
|
||||
"modifiedDate": "2025-10-20T23:47:10.213Z",
|
||||
"modifiedDate": "2025-10-28T19:30:03.353Z",
|
||||
"links": {
|
||||
"self": "/contacts/43182533",
|
||||
"projects": "/contacts/43182533/projects",
|
||||
"phones": "/contacts/43182533/phones",
|
||||
"emailAddresses": "/contacts/43182533/emailAddresses",
|
||||
"addresses": "/contacts/43182533/addresses"
|
||||
"self": "/contacts/43212479",
|
||||
"projects": "/contacts/43212479/projects",
|
||||
"phones": "/contacts/43212479/phones",
|
||||
"emailAddresses": "/contacts/43212479/emailAddresses",
|
||||
"addresses": "/contacts/43212479/addresses"
|
||||
}
|
||||
},
|
||||
"links": {}
|
||||
@@ -217,7 +284,7 @@
|
||||
}
|
||||
},
|
||||
"headers": {
|
||||
"Date": "Thu, 23 Oct 2025 00:21:15 GMT",
|
||||
"Date": "Wed, 05 Nov 2025 21:28:31 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Transfer-Encoding": "chunked",
|
||||
"Connection": "keep-alive",
|
||||
@@ -228,18 +295,18 @@
|
||||
"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 *.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 *.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 *.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://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://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.3426.3.0",
|
||||
"x-fv-correlation-id": "51ff3a6e96c24996b386a4177bef952a",
|
||||
"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.3478.1.0",
|
||||
"x-fv-correlation-id": "3626bb4a49e94212a849d79f5115ba79",
|
||||
"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": "51ff3a6e96c24996b386a4177bef952a",
|
||||
"x-fv-gateway-correlation-id": "3626bb4a49e94212a849d79f5115ba79",
|
||||
"cf-cache-status": "DYNAMIC",
|
||||
"Content-Encoding": "gzip",
|
||||
"CF-RAY": "992d12c2ec4131ba-SEA",
|
||||
"CF-RAY": "999f70fa1e42f8dd-SEA",
|
||||
"alt-svc": "h3=\":443\"; ma=86400"
|
||||
}
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
50
examples/project_type.json
Normal file
50
examples/project_type.json
Normal file
@@ -0,0 +1,50 @@
|
||||
{
|
||||
"sample_request": {
|
||||
"url": "https://api.filevineapp.com/fv-app/v2/ProjectTypes/34111",
|
||||
"headers": {
|
||||
"Accept": "application/json",
|
||||
"Authorization": "Bearer eyJhbGciOiJSUzUxMiIsImtpZCI6Ijg2NjRFMkY0MDNCQjIxMzk2MzQ4NUFDOEI0MzVGMEJBOTgxNTBFN0RSUzUxMiIsInR5cCI6ImF0K2p3dCIsIng1dCI6ImhtVGk5QU83SVRsalNGckl0RFh3dXBnVkRuMCJ9.eyJuYmYiOjE3NjIzNzgxMTQsImV4cCI6MTc2MjM3OTkxNCwiaXNzIjoiaHR0cHM6Ly9pZGVudGl0eS5maWxldmluZS5jb20iLCJhdWQiOlsiZmlsZXZpbmUudjIuYXBpIiwiZnYuYXBpLmdhdGV3YXkiLCJmdi5hdXRoIl0sImNsaWVudF9pZCI6IjRGMTg3MzhDLTEwN0EtNEI4Mi1CRkFDLTMwOEYxQjZBNjI2QSIsInN1YiI6ImY3MDQ4NGZmLTQ5MjItNDliMy05MWFkLTE2YjA5Mjk5MGIzMCIsImF1dGhfdGltZSI6MTc2MjM3ODExNCwiaWRwIjoibG9jYWwiLCJwYXRfaWQiOiJoQll0K013VUJ4bm9xOTNYNVNUdnpyY0xwVFQ2M09HVHhudVcrZGFyZTVJPSIsInBhdF9uYW1lIjoiQnJ5Y2UgQ292ZXJ0IiwicGF0X3ZlcnNpb24iOiIxIiwidGVuYW50X2ZybiI6ImZybjpmaWxldmluZTp1cy1wcm9kOmZpbGV2aW5lLWFwcDo6OnRlbmFudFxcMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwidGVuYW50X2lkIjoiMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwianRpIjoiMTc1N0JGQzAzN0ZGODFCOUFDREI4QjhENkIwQ0U1MzciLCJpYXQiOjE3NjIzNzgxMTQsInNjb3BlIjpbImVtYWlsIiwiZmlsZXZpbmUudjIuYXBpLioiLCJmdi5hcGkuZ2F0ZXdheS5hY2Nlc3MiLCJmdi5hdXRoLnRlbmFudC5yZWFkIiwib3BlbmlkIiwidGVuYW50Il0sImFtciI6WyJwZXJzb25hbF9hY2Nlc3NfdG9rZW4iXX0.eaMV8RNkbxrupNCY8U6wwAQND-_mJaN7KrR4zuPSCGQbtUd8V6b_b08oegxjhI8qnaGDOGL8SjXo-7UaDWa5gfMxFmw4u3rAQKCQmpD_xezaM8KfaY9qVWyZsw_92RmM7RwqrltyBc5bx5a8efmQWjgTSce4faRzsazA69a1JMR41vI7COtJrnNz1Le29420OahoCpydUGJu2smJK4qjeIV-rJUAgtJ-f9Xy7We93CXI_Oiiqa8t2FwtVrBrHhsdQ5r8XKbg3q9HUteaGMQPT8dl8OWA-T_GBMX3ISEn8xx6jKVQtBXxa2uIO-TSwcruW5Xtuvn_Cw5RIsxLCg25Qw",
|
||||
"x-fv-orgid": "9227",
|
||||
"x-fv-userid": "100510"
|
||||
},
|
||||
"params": {},
|
||||
"method": "GET"
|
||||
},
|
||||
"sample_response": {
|
||||
"status_code": 200,
|
||||
"json": {
|
||||
"projectTypeId": {
|
||||
"native": 34111,
|
||||
"partner": null
|
||||
},
|
||||
"name": "Evictions",
|
||||
"links": {}
|
||||
},
|
||||
"headers": {
|
||||
"Date": "Wed, 05 Nov 2025 21:28:34 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.3478.1.0",
|
||||
"x-fv-correlation-id": "07ebd03e709c481a93421e11091a529c",
|
||||
"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": "07ebd03e709c481a93421e11091a529c",
|
||||
"cf-cache-status": "DYNAMIC",
|
||||
"Content-Encoding": "gzip",
|
||||
"CF-RAY": "999f710f5809322f-SEA",
|
||||
"alt-svc": "h3=\":443\"; ma=86400"
|
||||
}
|
||||
}
|
||||
}
|
||||
17316
examples/project_type_sections.json
Normal file
17316
examples/project_type_sections.json
Normal file
File diff suppressed because it is too large
Load Diff
@@ -23,26 +23,150 @@ def get_bearer_token():
|
||||
|
||||
# Define the collection of request/response pairs
|
||||
# User can add more tuples following the same pattern
|
||||
SAMPLE_PROJECT_ID = 15905506
|
||||
SAMPLE_PROJECT_ID = 15974631
|
||||
SAMPLE_CLIENT_ID = 43407853
|
||||
SAMPLE_FOLDER_ID = 138954131
|
||||
SAMPLE_PROJECT_TYPE = 34111
|
||||
|
||||
REQUESTS = [
|
||||
(
|
||||
{
|
||||
"url": "https://api.filevineapp.com/fv-app/v2/projects",
|
||||
"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": {},
|
||||
"method": "GET"
|
||||
# (
|
||||
# {
|
||||
# "url": "https://api.filevineapp.com/fv-app/v2/projects",
|
||||
# "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": {},
|
||||
# "method": "GET"
|
||||
|
||||
},
|
||||
"examples/project_list.json"
|
||||
),
|
||||
# },
|
||||
# "examples/project_list.json"
|
||||
# ),
|
||||
# (
|
||||
# {
|
||||
# "url": f"https://api.filevineapp.com/fv-app/v2/projects/{SAMPLE_PROJECT_ID}",
|
||||
# "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": {},
|
||||
# "method": "GET"
|
||||
|
||||
# },
|
||||
# "examples/project.json"
|
||||
# ),
|
||||
# (
|
||||
# {
|
||||
# "url": f"https://api.filevineapp.com/fv-app/v2/Projects/{SAMPLE_PROJECT_ID}/contacts",
|
||||
# "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": {},
|
||||
# "method": "GET"
|
||||
|
||||
# },
|
||||
# "examples/project_contacts.json"
|
||||
# ),
|
||||
# (
|
||||
# {
|
||||
# "url": f"https://api.filevineapp.com/fv-app/v2/contacts/{SAMPLE_CLIENT_ID}",
|
||||
# "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": {},
|
||||
# "method": "GET"
|
||||
|
||||
# },
|
||||
# "examples/client.json"
|
||||
# ),
|
||||
# (
|
||||
# {
|
||||
# "url": f"https://api.filevineapp.com/fv-app/v2/folders/{SAMPLE_FOLDER_ID}",
|
||||
# "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": {},
|
||||
# "method": "GET"
|
||||
|
||||
# },
|
||||
# "examples/folder.json"
|
||||
# ),
|
||||
# (
|
||||
# {
|
||||
# "url": f"https://api.filevineapp.com/fv-app/v2/folders/{SAMPLE_FOLDER_ID}/children",
|
||||
# "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": {},
|
||||
# "method": "GET"
|
||||
|
||||
# },
|
||||
# "examples/folder_children.json"
|
||||
# ),
|
||||
# (
|
||||
# {
|
||||
# "url": f"https://api.filevineapp.com/fv-app/v2/DocumentSearch?projectId={SAMPLE_PROJECT_ID}&searchTerm=notice",
|
||||
# "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": {},
|
||||
# "method": "GET"
|
||||
|
||||
# },
|
||||
# "examples/document_search.json"
|
||||
# ),
|
||||
# (
|
||||
# {
|
||||
# "url": f"https://api.filevineapp.com/fv-app/v2/ProjectTypes/{SAMPLE_PROJECT_TYPE}",
|
||||
# "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": {},
|
||||
# "method": "GET"
|
||||
|
||||
# },
|
||||
# "examples/project_type.json"
|
||||
# ),
|
||||
# (
|
||||
# {
|
||||
# "url": f"https://api.filevineapp.com/fv-app/v2/ProjectTypes/{SAMPLE_PROJECT_TYPE}/sections",
|
||||
# "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": {},
|
||||
# "method": "GET"
|
||||
|
||||
# },
|
||||
# "examples/project_type_sections.json"
|
||||
# ),
|
||||
(
|
||||
{
|
||||
"url": f"https://api.filevineapp.com/fv-app/v2/Projects/{SAMPLE_PROJECT_ID}/contacts",
|
||||
"url": f"https://api.filevineapp.com/fv-app/v2/Projects/{SAMPLE_PROJECT_ID}/Forms/complaintInfo",
|
||||
"headers": {
|
||||
"Accept": "application/json",
|
||||
"Authorization": f"Bearer {get_bearer_token()}",
|
||||
@@ -53,11 +177,11 @@ REQUESTS = [
|
||||
"method": "GET"
|
||||
|
||||
},
|
||||
"examples/project_contacts.json"
|
||||
"examples/forms__complaintInfo.json"
|
||||
),
|
||||
(
|
||||
{
|
||||
"url": f"https://api.filevineapp.com/fv-app/v2/contacts/43125866",
|
||||
"url": f"https://api.filevineapp.com/fv-app/v2/Projects/{SAMPLE_PROJECT_ID}/Forms/newFileReview",
|
||||
"headers": {
|
||||
"Accept": "application/json",
|
||||
"Authorization": f"Bearer {get_bearer_token()}",
|
||||
@@ -68,8 +192,8 @@ REQUESTS = [
|
||||
"method": "GET"
|
||||
|
||||
},
|
||||
"examples/client.json"
|
||||
)
|
||||
"examples/forms__newFileReview.json"
|
||||
)
|
||||
]
|
||||
|
||||
def generate_sample_request_response(request_config):
|
||||
@@ -83,6 +207,7 @@ def generate_sample_request_response(request_config):
|
||||
"sample_response": {
|
||||
"status_code": response.status_code,
|
||||
"json": response.json() if response.content else None,
|
||||
"xxx": str(response.content),
|
||||
"headers": dict(response.headers)
|
||||
}
|
||||
}
|
||||
@@ -108,4 +233,4 @@ if __name__ == "__main__":
|
||||
print(f"Generated {len(REQUESTS)} sample request/response pairs")
|
||||
|
||||
except Exception as e:
|
||||
print(f"Error: {e}")
|
||||
print(f"Error: {e}")
|
||||
|
||||
@@ -5,183 +5,118 @@
|
||||
<table class="min-w-full">
|
||||
<thead class="bg-slate-100 text-left text-sm">
|
||||
<tr>
|
||||
<th class="px-4 py-3">Project ID</th>
|
||||
<th class="px-4 py-3">Project Name</th>
|
||||
<th class="px-4 py-3">Client Name</th>
|
||||
<th class="px-4 py-3">Project Type</th>
|
||||
<th class="px-4 py-3">Phase Name</th>
|
||||
<th class="px-4 py-3">Phase Date</th>
|
||||
<th class="px-4 py-3">Created Date</th>
|
||||
<th class="px-4 py-3">Last Activity</th>
|
||||
<th class="px-4 py-3">Project Email</th>
|
||||
<th class="px-4 py-3">Project URL</th>
|
||||
<th class="px-4 py-3">Defendant Name</th>
|
||||
<th class="px-4 py-3">Defendant Type</th>
|
||||
<th class="px-4 py-3">Defendant Role</th>
|
||||
<th class="px-4 py-3">Defendant Email</th>
|
||||
<th class="px-4 py-3">Defendant Phone</th>
|
||||
<th class="px-4 py-3">Defendant Address</th>
|
||||
<th class="px-4 py-3">Property Manager Name</th>
|
||||
<th class="px-4 py-3">Property Manager Type</th>
|
||||
<th class="px-4 py-3">Property Manager Role</th>
|
||||
<th class="px-4 py-3">Property Manager Email</th>
|
||||
<th class="px-4 py-3">Property Manager Phone</th>
|
||||
<th class="px-4 py-3">Property Manager Address</th>
|
||||
<th class="px-4 py-3">Attorney Name</th>
|
||||
<th class="px-4 py-3">Attorney Type</th>
|
||||
<th class="px-4 py-3">Attorney Role</th>
|
||||
<th class="px-4 py-3">Attorney Email</th>
|
||||
<th class="px-4 py-3">Attorney Phone</th>
|
||||
<th class="px-4 py-3">Attorney Address</th>
|
||||
<th class="px-4 py-3">Matter Num</th>
|
||||
<th class="px-4 py-3">Client / Property</th>
|
||||
<th class="px-4 py-3">Matter Description</th>
|
||||
<th class="px-4 py-3">Defendant 1</th>
|
||||
<th class="px-4 py-3">Matter Open</th>
|
||||
<th class="px-4 py-3">Practice Area</th>
|
||||
<th class="px-4 py-3">Notice Type</th>
|
||||
<th class="px-4 py-3">Case Number</th>
|
||||
<th class="px-4 py-3">Premises Address</th>
|
||||
<th class="px-4 py-3">Premises City</th>
|
||||
<th class="px-4 py-3">Client Email (Primary)</th>
|
||||
<th class="px-4 py-3">Responsible Attorney and best contact</th>
|
||||
<th class="px-4 py-3">Staff person currently in charge of your case, with contact info</th>
|
||||
<th class="px-4 py-3">2nd Staff person currently in charge of your case, with contact info</th>
|
||||
<th class="px-4 py-3">Link to Hona Portal</th>
|
||||
<th class="px-4 py-3">Matter Stage</th>
|
||||
<th class="px-4 py-3">Completed Tasks</th>
|
||||
<th class="px-4 py-3">Pending Tasks</th>
|
||||
<th class="px-4 py-3">Notice Service Date</th>
|
||||
<th class="px-4 py-3">Notice Expir. Date</th>
|
||||
<th class="px-4 py-3">Date Case Filed</th>
|
||||
<th class="px-4 py-3">Daily Rent Damages</th>
|
||||
<th class="px-4 py-3">Default Date</th>
|
||||
<th class="px-4 py-3">Default Entered On</th>
|
||||
<th class="px-4 py-3">Motions:</th>
|
||||
<th class="px-4 py-3">Demurrer Hearing Date</th>
|
||||
<th class="px-4 py-3">Motion To Strike Hearing Date</th>
|
||||
<th class="px-4 py-3">Motion to Quash Hearing Date</th>
|
||||
<th class="px-4 py-3">Other Motion Hearing Date</th>
|
||||
<th class="px-4 py-3">MSC Date</th>
|
||||
<th class="px-4 py-3">MSC Time</th>
|
||||
<th class="px-4 py-3">MSC Address</th>
|
||||
<th class="px-4 py-3">MSC Div/ Dept/ Room</th>
|
||||
<th class="px-4 py-3">Trial Date</th>
|
||||
<th class="px-4 py-3">Trial Time</th>
|
||||
<th class="px-4 py-3">Trial Address</th>
|
||||
<th class="px-4 py-3">Trial Div/ Dept/ Room</th>
|
||||
<th class="px-4 py-3">Final Result of Trial/ MSC</th>
|
||||
<th class="px-4 py-3">Date of Settlement</th>
|
||||
<th class="px-4 py-3">Final Obligation Under the Stip</th>
|
||||
<th class="px-4 py-3">Def's Comply with the Stip?</th>
|
||||
<th class="px-4 py-3">Judgment Date</th>
|
||||
<th class="px-4 py-3">Writ Issued Date</th>
|
||||
<th class="px-4 py-3">Scheduled Lockout</th>
|
||||
<th class="px-4 py-3">Oppose Stays?</th>
|
||||
<th class="px-4 py-3">Premises Safety or Access Issues</th>
|
||||
<th class="px-4 py-3">Matter Gate or Entry Code</th>
|
||||
<th class="px-4 py-3">Date Possession Recovered</th>
|
||||
<th class="px-4 py-3">Attorney's Fees</th>
|
||||
<th class="px-4 py-3">Costs</th>
|
||||
<th class="px-4 py-3">Service Attempt Date 1</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="divide-y">
|
||||
{% for r in rows %}
|
||||
<tr class="hover:bg-slate-50">
|
||||
<td class="px-4 py-3 text-sm">{{ r.ProjectId or '—' }}</td>
|
||||
<td class="px-4 py-3 text-sm">{{ r.ProjectName or '—' }}</td>
|
||||
<td class="px-4 py-3 text-sm">{{ r.client or '—' }}</td>
|
||||
<td class="px-4 py-3 text-sm">{{ r.projectTypeCode or '—' }}</td>
|
||||
<td class="px-4 py-3 text-sm">{{ r.phaseName or '—' }}</td>
|
||||
<td class="px-4 py-3 text-sm">{{ (r.phaseDate or '')[:10] }}</td>
|
||||
<td class="px-4 py-3 text-sm">{{ (r.createdDate or '')[:10] }}</td>
|
||||
<td class="px-4 py-3 text-sm">{{ (r.lastActivity or '')[:10] }}</td>
|
||||
<td class="px-4 py-3 text-sm">{{ r.ProjectEmailAddress or '—' }}</td>
|
||||
<td class="px-4 py-3 text-sm">
|
||||
{% if r.projectUrl %}
|
||||
<a class="text-blue-600 hover:underline" href="{{ r.projectUrl }}" target="_blank">Open</a>
|
||||
{% else %}—{% endif %}
|
||||
</td>
|
||||
<td class="px-4 py-3 text-sm">
|
||||
{% for c in r.contacts %}
|
||||
{% if 'Defendant' in (c.roles or []) %}
|
||||
{{ c.orgContact.firstName }} {{ c.orgContact.lastName }}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</td>
|
||||
<td class="px-4 py-3 text-sm">
|
||||
{% for c in r.contacts %}
|
||||
{% if 'Defendant' in (c.roles or []) %}
|
||||
{{ (c.orgContact.personTypes or ['—']) | join(', ') }}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</td>
|
||||
<td class="px-4 py-3 text-sm">
|
||||
{% for c in r.contacts %}
|
||||
{% if 'Defendant' in (c.roles or []) %}
|
||||
{{ (c.roles or ['—']) | join(', ') }}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</td>
|
||||
<td class="px-4 py-3 text-sm">
|
||||
{% for c in r.contacts %}
|
||||
{% if 'Defendant' in (c.roles or []) and c.orgContact.emails %}
|
||||
{{ c.orgContact.emails[0].address }}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</td>
|
||||
<td class="px-4 py-3 text-sm">
|
||||
{% for c in r.contacts %}
|
||||
{% if 'Defendant' in (c.roles or []) and c.orgContact.phones %}
|
||||
{{ c.orgContact.phones[0].number }}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</td>
|
||||
<td class="px-4 py-3 text-sm">
|
||||
{% for c in r.contacts %}
|
||||
{% if 'Defendant' in (c.roles or []) and c.orgContact.addresses %}
|
||||
{{ c.orgContact.addresses[0].fullAddress }}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</td>
|
||||
<td class="px-4 py-3 text-sm">
|
||||
{% for c in r.contacts %}
|
||||
{% if 'Property Manager' in (c.roles or []) %}
|
||||
{{ c.orgContact.firstName }} {{ c.orgContact.lastName }}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</td>
|
||||
<td class="px-4 py-3 text-sm">
|
||||
{% for c in r.contacts %}
|
||||
{% if 'Property Manager' in (c.roles or []) %}
|
||||
{{ (c.orgContact.personTypes or ['—']) | join(', ') }}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</td>
|
||||
<td class="px-4 py-3 text-sm">
|
||||
{% for c in r.contacts %}
|
||||
{% if 'Property Manager' in (c.roles or []) %}
|
||||
{{ (c.roles or ['—']) | join(', ') }}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</td>
|
||||
<td class="px-4 py-3 text-sm">
|
||||
{% for c in r.contacts %}
|
||||
{% if 'Property Manager' in (c.roles or []) and c.orgContact.emails %}
|
||||
{{ c.orgContact.emails[0].address }}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</td>
|
||||
<td class="px-4 py-3 text-sm">
|
||||
{% for c in r.contacts %}
|
||||
{% if 'Property Manager' in (c.roles or []) and c.orgContact.phones %}
|
||||
{{ c.orgContact.phones[0].number }}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</td>
|
||||
<td class="px-4 py-3 text-sm">
|
||||
{% for c in r.contacts %}
|
||||
{% if 'Property Manager' in (c.roles or []) and c.orgContact.addresses %}
|
||||
{{ c.orgContact.addresses[0].fullAddress }}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</td>
|
||||
<td class="px-4 py-3 text-sm">
|
||||
{% for c in r.contacts %}
|
||||
{% if 'Attorney' in (c.roles or []) %}
|
||||
{{ c.orgContact.firstName }} {{ c.orgContact.lastName }}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</td>
|
||||
<td class="px-4 py-3 text-sm">
|
||||
{% for c in r.contacts %}
|
||||
{% if 'Attorney' in (c.roles or []) %}
|
||||
{{ (c.orgContact.personTypes or ['—']) | join(', ') }}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</td>
|
||||
<td class="px-4 py-3 text-sm">
|
||||
{% for c in r.contacts %}
|
||||
{% if 'Attorney' in (c.roles or []) %}
|
||||
{{ (c.roles or ['—']) | join(', ') }}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</td>
|
||||
<td class="px-4 py-3 text-sm">
|
||||
{% for c in r.contacts %}
|
||||
{% if 'Attorney' in (c.roles or []) and c.orgContact.emails %}
|
||||
{{ c.orgContact.emails[0].address }}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</td>
|
||||
<td class="px-4 py-3 text-sm">
|
||||
{% for c in r.contacts %}
|
||||
{% if 'Attorney' in (c.roles or []) and c.orgContact.phones %}
|
||||
{{ c.orgContact.phones[0].number }}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</td>
|
||||
<td class="px-4 py-3 text-sm">
|
||||
{% for c in r.contacts %}
|
||||
{% if 'Attorney' in (c.roles or []) and c.orgContact.addresses %}
|
||||
{{ c.orgContact.addresses[0].fullAddress }}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm">{{ r.client }}</td>
|
||||
<td class="px-4 py-3 text-sm">{{ r.matter_description }}</td>
|
||||
<td class="px-4 py-3 text-sm">{{ r.defendant_1 }}</td>
|
||||
<td class="px-4 py-3 text-sm">{{ r.matter_open }}</td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm">{{ r.notice_type }}</td>
|
||||
<td class="px-4 py-3 text-sm">{{ r.case_number }}</td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
<td class="px-4 py-3 text-sm"></td>
|
||||
</tr>
|
||||
{% else %}
|
||||
<tr>
|
||||
<td colspan="27" class="px-4 py-6 text-center text-slate-500">No matching projects found.</td>
|
||||
<td colspan="53" class="px-4 py-6 text-center text-slate-500">No matching projects found.</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
|
||||
Reference in New Issue
Block a user