This commit is contained in:
2025-11-05 19:46:21 -08:00
parent 2b0b81abb8
commit a123d4e93b
10 changed files with 2137 additions and 29 deletions

View File

@@ -193,6 +193,35 @@ REQUESTS = [
},
"examples/forms__newFileReview.json"
),
(
{
"url": f"https://api.filevineapp.com/fv-app/v2/Projects/{SAMPLE_PROJECT_ID}/tasks",
"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_tasks.json"
),
(
{
"url": f"https://api.filevineapp.com/fv-app/v2/ProjectTypes/{SAMPLE_PROJECT_TYPE}/phases",
"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_pahe_list.json"
)
]