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: README.md
+12-11Lines changed: 12 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ var sdk = new Speakeasy(
25
25
security: newSecurity() {
26
26
APIKey="<YOUR_API_KEY_HERE>",
27
27
},
28
-
workspaceID: "string");
28
+
workspaceID: "<value>");
29
29
30
30
GetApisRequestreq=newGetApisRequest() {};
31
31
@@ -77,6 +77,7 @@ var res = await sdk.Apis.GetApisAsync(req);
77
77
78
78
### [Auth](docs/sdks/auth/README.md)
79
79
80
+
*[GetWorkspaceAccess](docs/sdks/auth/README.md#getworkspaceaccess) - Get access allowances for a particular workspace
80
81
*[ValidateApiKey](docs/sdks/auth/README.md#validateapikey) - Validate the current api key.
81
82
82
83
### [Requests](docs/sdks/requests/README.md)
@@ -139,11 +140,11 @@ var sdk = new Speakeasy(
139
140
security: newSecurity() {
140
141
APIKey="<YOUR_API_KEY_HERE>",
141
142
},
142
-
workspaceID: "string");
143
+
workspaceID: "<value>");
143
144
144
145
DeleteApiRequestreq=newDeleteApiRequest() {
145
-
ApiID="string",
146
-
VersionID="string",
146
+
ApiID="<value>",
147
+
VersionID="<value>",
147
148
};
148
149
149
150
varres=awaitsdk.Apis.DeleteApiAsync(req);
@@ -159,7 +160,7 @@ var res = await sdk.Apis.DeleteApiAsync(req);
159
160
160
161
A parameter is configured globally. This parameter may be set on the SDK client instance itself during initialization. When configured as an option during SDK initialization, This global value will be used as the default on the operations that use it. When such operations are called, there is a place in each to override the global value, if needed.
161
162
162
-
For example, you can set `workspaceID` to `"string"` at SDK initialization and then you do not have to pass the same value on calls to operations like `PostWorkspaceEvents`. But if you want to do so you may, which will locally override the global setting. See the example code below for a demonstration.
163
+
For example, you can set `workspaceID` to `"<value>"` at SDK initialization and then you do not have to pass the same value on calls to operations like `PostWorkspaceEvents`. But if you want to do so you may, which will locally override the global setting. See the example code below for a demonstration.
0 commit comments