@@ -13,6 +13,50 @@ The client requires environment variables to be set for the Dynata Demand API cr
1313 demandapi.authenticate()
1414 demandapi.logout()
1515
16+ ## Supported API Functions
17+
18+ ### Authentication Functions
19+
20+ authenticate()
21+ refresh_access_token()
22+ logout()
23+
24+ ### Event Functions
25+
26+ get_event(event_id)
27+ get_events(\*\* kwargs)
28+
29+ ### Project Functions
30+
31+ buy_project(project_id, buy_data)
32+ close_project(project_id)
33+ create_project(project_data)
34+ get_project(project_id)
35+ get_projects(\*\* kwargs)
36+ reconcile_project(project_id, reconcile_data)
37+ update_project(project_id, update_data)
38+ get_project_detailed_report(project_id)
39+ get_feasibility(project_id)
40+ get_invoice(project_id)
41+
42+ ### Line Item Functions
43+
44+ add_line_item(project_id, lineitem_data)
45+ close_line_item(project_id, line_item_id)
46+ get_line_item(project_id, line_item_id)
47+ get_line_items(project_id, \*\* kwargs)
48+ launch_line_item(project_id, line_item_id)
49+ pause_line_item(project_id, line_item_id)
50+ update_line_item(project_id, line_item_id, line_item_data)
51+ get_line_item_detailed_report(project_id, line_item_id)
52+
53+ ### Misc Functions
54+
55+ get_attributes(country_code, language_code, \*\* kwargs)
56+ get_countries(\*\* kwargs)
57+ get_sources()
58+ get_survey_topics(\*\* kwargs)
59+
1660## Contributing
1761
1862Information on [ contributing] ( CONTRIBUTING.md ) .
0 commit comments