@@ -14,19 +14,17 @@ pip install codat-common
1414import codat
1515from codat.models import operations, shared
1616
17- s = codat.Codat()
18- s.config_security(
17+ s = codat.Codat(
1918 security = shared.Security(
20- api_key = " YOUR_API_KEY_HERE" ,
21- )
22- )
23-
24- req = operations.CreateCompanyRequest(
25- request = operations.CreateCompanyRequestBody(
26- description = " unde" ,
27- name = " deserunt" ,
19+ auth_header = " YOUR_API_KEY_HERE" ,
2820 ),
2921)
22+
23+
24+ req = operations.CreateCompanyRequestBody(
25+ description = " unde" ,
26+ name = " deserunt" ,
27+ )
3028
3129res = s.companies.create_company(req)
3230
@@ -41,20 +39,20 @@ if res.create_company_200_application_json_object is not None:
4139
4240### companies
4341
44- * ` create_company ` - Create a company
45- * ` delete_companies_company_id ` - Delete a company
46- * ` get_companies_company_id ` - Get company
42+ * ` create_company ` - Create company
43+ * ` delete_company ` - Delete a company
44+ * ` get_company ` - Get company
4745* ` list_companies ` - List companies
48- * ` put_companies_company_id ` - Update a company
46+ * ` update_company ` - Update company
4947
5048### connections
5149
5250* ` create_data_connection ` - Create a data connection
5351* ` delete_company_connection ` - Delete connection
54- * ` get_companies_company_id_connections_connection_id_authorization ` - Update authorization
52+ * ` get_company_authorization ` - Update authorization
5553* ` get_company_connection ` - Get connection
5654* ` list_company_connections ` - List connections
57- * ` patch_company_connection ` - Unlink connection
55+ * ` unlink_company_connection ` - Unlink connection
5856
5957### data_status
6058
@@ -88,9 +86,9 @@ if res.create_company_200_application_json_object is not None:
8886
8987### webhooks
9088
89+ * ` create_rule ` - Create webhook
9190* ` get_webhook ` - Get webhook
9291* ` list_rules ` - List webhooks
93- * ` post_rules ` - Create webhook
9492<!-- End SDK Available Operations -->
9593
9694### SDK Generated by [ Speakeasy] ( https://docs.speakeasyapi.dev/docs/using-speakeasy/client-sdks )
0 commit comments