most feedback applied.

This commit is contained in:
2025-11-06 22:00:43 -08:00
parent dd13ed1711
commit 0022bb5abe
9 changed files with 1473 additions and 81 deletions

View File

@@ -222,8 +222,22 @@ REQUESTS = [
"method": "GET"
}, "examples/project_type_pahe_list.json"
)
]
),
(
{
"url": f"https://api.filevineapp.com/fv-app/v2/Projects/15914808/team",
"headers": {
"Accept": "application/json",
"Authorization": f"Bearer {get_bearer_token()}",
"x-fv-orgid": os.environ.get("FILEVINE_ORG_ID"),
"x-fv-userid": os.environ.get("FILEVINE_USER_ID"),
},
"params": {"limit": 1000},
"method": "GET"
},
"examples/project_team.json"
)]
def generate_sample_request_response(request_config):
"""Generate a sample request/response pair using the provided request configuration."""