You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: platform/Codat/Platform/CodatPlatform.cs
+69-23Lines changed: 69 additions & 23 deletions
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,7 @@
10
10
#nullable enable
11
11
namespaceCodat.Platform
12
12
{
13
+
usingCodat.Platform.Models.Errors;
13
14
usingCodat.Platform.Models.Shared;
14
15
usingCodat.Platform.Utils;
15
16
usingNewtonsoft.Json;
@@ -18,8 +19,6 @@ namespace Codat.Platform
18
19
usingSystem.Threading.Tasks;
19
20
usingSystem;
20
21
21
-
22
-
23
22
/// <summary>
24
23
/// Platform API: Platform API
25
24
///
@@ -28,72 +27,96 @@ namespace Codat.Platform
28
27
/// <br/>
29
28
/// These end points cover creating and managing your companies, data connections, and integrations.<br/>
30
29
/// <br/>
31
-
/// <a href="https://docs.codat.io/core-concepts/companies">Read about the building blocks of Codat...</a><br/>
30
+
/// <a href="https://docs.codat.io/core-concepts/companies">Read about the building blocks of Codat...</a> | <a href="https://github.com/codatio/oas">See our OpenAPI spec</a> <br/>
/// Create new and manage existing data connections for a company.
51
72
/// </summary>
52
73
publicIConnectionsConnections{get;}
53
74
54
75
/// <summary>
55
-
/// View and configure custom data types for supported integrations.
76
+
/// Configure and pull additional data types that are not included in Codat's standardized data model.
56
77
/// </summary>
57
78
publicICustomDataTypeCustomDataType{get;}
58
79
59
80
/// <summary>
60
-
/// View push options and get push statuses.
81
+
/// Initiate and monitor Create, Update, and Delete operations.
61
82
/// </summary>
62
83
publicIPushDataPushData{get;}
63
84
64
85
/// <summary>
65
-
/// Asynchronously retrieve data from an integration to refresh data in Codat.
86
+
/// Initiate data refreshes, view pull status and history.
66
87
/// </summary>
67
88
publicIRefreshDataRefreshData{get;}
68
89
69
90
/// <summary>
70
-
/// Create groups and link them to your Codat companies.
91
+
/// Define and manage sets of companies based on a chosen characteristic.
71
92
/// </summary>
72
93
publicIGroupsGroups{get;}
73
94
74
95
/// <summary>
75
-
/// View and manage your available integrations in Codat.
96
+
/// Get a list of integrations supported by Codat and their logos.
76
97
/// </summary>
77
98
publicIIntegrationsIntegrations{get;}
78
99
79
100
/// <summary>
80
-
/// View and configure supplemental data for supported data types.
101
+
/// Configure and pull additional data you can include in Codat's standard data types.
81
102
/// </summary>
82
103
publicISupplementalDataSupplementalData{get;}
83
104
84
105
/// <summary>
85
-
/// Manage webhooks, rules, and events.
106
+
/// Create and manage webhooks that listen to Codat's events.
86
107
/// </summary>
87
108
publicIWebhooksWebhooks{get;}
88
109
}
89
-
110
+
90
111
publicclassSDKConfig
91
112
{
92
-
publicstaticstring[]ServerList=newstring[]
93
-
{
113
+
/// <summary>
114
+
/// List of server URLs available to the SDK.
115
+
/// </summary>
116
+
publicstaticreadonlystring[]ServerList={
94
117
"https://api.codat.io",
95
118
};
96
-
/// Contains the list of servers available to the SDK
119
+
97
120
publicstringserverUrl="";
98
121
publicintserverIndex=0;
99
122
@@ -115,26 +138,44 @@ public string GetTemplatedServerDetails()
115
138
/// <br/>
116
139
/// These end points cover creating and managing your companies, data connections, and integrations.<br/>
117
140
/// <br/>
118
-
/// <a href="https://docs.codat.io/core-concepts/companies">Read about the building blocks of Codat...</a><br/>
141
+
/// <a href="https://docs.codat.io/core-concepts/companies">Read about the building blocks of Codat...</a> | <a href="https://github.com/codatio/oas">See our OpenAPI spec</a> <br/>
0 commit comments