Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions NUGET.md
Original file line number Diff line number Diff line change
Expand Up @@ -240,9 +240,9 @@ catch (System.Net.Http.HttpRequestException ex)
* [`System.Net.Http.HttpRequestException`](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httprequestexception): Network connectivity error. For more details about the underlying cause, inspect the `ex.InnerException`.

* Inheriting from [`IamClientError`](./src/Docusign/IAM/SDK/Models/Errors/IamClientError.cs):
* [`ErrorDetails`](./src/Docusign/IAM/SDK/Models/Errors/ErrorDetails.cs): The error response object for the Workspaces API. Applicable to 23 of 41 methods.*
* [`Error`](./src/Docusign/IAM/SDK/Models/Errors/Error.cs): Bad Request - The request could not be understood or was missing required parameters. Applicable to 11 of 41 methods.*
* [`OAuthErrorResponse`](./src/Docusign/IAM/SDK/Models/Errors/OAuthErrorResponse.cs): Status code `400`. Applicable to 5 of 41 methods.*
* [`ErrorDetails`](./src/Docusign/IAM/SDK/Models/Errors/ErrorDetails.cs): The error response object for the Workspaces API. Applicable to 26 of 44 methods.*
* [`Error`](./src/Docusign/IAM/SDK/Models/Errors/Error.cs): Bad Request - The request could not be understood or was missing required parameters. Applicable to 11 of 44 methods.*
* [`OAuthErrorResponse`](./src/Docusign/IAM/SDK/Models/Errors/OAuthErrorResponse.cs): Status code `400`. Applicable to 5 of 44 methods.*
* [`ResponseValidationError`](./src/Docusign/IAM/SDK/Models/Errors/ResponseValidationError.cs): Thrown when the response data could not be deserialized into the expected type.
</details>

Expand Down
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,11 @@ var res = await sdk.Auth.GetUserInfoAsync();
* [DeleteAgreement](docs/sdks/agreements/README.md#deleteagreement) - Delete a specific agreement
* [CreateAgreementSummary](docs/sdks/agreements/README.md#createagreementsummary) - Create an AI-generated summary of an agreement document

#### [Workspaces.WorkspaceBrands](docs/sdks/workspacebrands/README.md)

* [GetWorkspaceBrand](docs/sdks/workspacebrands/README.md#getworkspacebrand) - Returns details about the brand set for a workspace
* [UpdateWorkspaceBrand](docs/sdks/workspacebrands/README.md#updateworkspacebrand) - Updates brand for an existing workspace

#### [Workspaces.WorkspaceDocuments](docs/sdks/workspacedocuments/README.md)

* [GetWorkspaceDocuments](docs/sdks/workspacedocuments/README.md#getworkspacedocuments) - Get documents in the workspace accessible to the calling user
Expand All @@ -301,6 +306,7 @@ var res = await sdk.Auth.GetUserInfoAsync();

* [GetWorkspaces](docs/sdks/workspaces2/README.md#getworkspaces) - Gets workspaces available to the calling user
* [CreateWorkspace](docs/sdks/workspaces2/README.md#createworkspace) - Creates a new workspace
* [UpdateWorkspace](docs/sdks/workspaces2/README.md#updateworkspace) - Updates an existing workspace
* [GetWorkspace](docs/sdks/workspaces2/README.md#getworkspace) - Returns details about the workspace
* [GetWorkspaceAssignableRoles](docs/sdks/workspaces2/README.md#getworkspaceassignableroles) - Returns the roles the caller can assign to workspace users
* [CreateWorkspaceEnvelope](docs/sdks/workspaces2/README.md#createworkspaceenvelope) - Creates an envelope with the given documents. Returns the ID of the created envelope
Expand Down Expand Up @@ -488,9 +494,9 @@ catch (System.Net.Http.HttpRequestException ex)
* [`System.Net.Http.HttpRequestException`](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httprequestexception): Network connectivity error. For more details about the underlying cause, inspect the `ex.InnerException`.

* Inheriting from [`IamClientError`](./src/Docusign/IAM/SDK/Models/Errors/IamClientError.cs):
* [`ErrorDetails`](./src/Docusign/IAM/SDK/Models/Errors/ErrorDetails.cs): The error response object for the Workspaces API. Applicable to 23 of 41 methods.*
* [`Error`](./src/Docusign/IAM/SDK/Models/Errors/Error.cs): Bad Request - The request could not be understood or was missing required parameters. Applicable to 11 of 41 methods.*
* [`OAuthErrorResponse`](./src/Docusign/IAM/SDK/Models/Errors/OAuthErrorResponse.cs): Status code `400`. Applicable to 5 of 41 methods.*
* [`ErrorDetails`](./src/Docusign/IAM/SDK/Models/Errors/ErrorDetails.cs): The error response object for the Workspaces API. Applicable to 26 of 44 methods.*
* [`Error`](./src/Docusign/IAM/SDK/Models/Errors/Error.cs): Bad Request - The request could not be understood or was missing required parameters. Applicable to 11 of 44 methods.*
* [`OAuthErrorResponse`](./src/Docusign/IAM/SDK/Models/Errors/OAuthErrorResponse.cs): Status code `400`. Applicable to 5 of 44 methods.*
* [`ResponseValidationError`](./src/Docusign/IAM/SDK/Models/Errors/ResponseValidationError.cs): Thrown when the response data could not be deserialized into the expected type.
</details>

Expand Down
12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,4 +80,14 @@ Based on:
### Generated
- [csharp v1.0.0-beta.5] .
### Releases
- [NuGet v1.0.0-beta.5] https://www.nuget.org/packages/Docusign.IAM.SDK/1.0.0-beta.5 - .
- [NuGet v1.0.0-beta.5] https://www.nuget.org/packages/Docusign.IAM.SDK/1.0.0-beta.5 - .

## 2025-10-17 12:40:27
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.637.0 (2.727.4) https://github.com/speakeasy-api/speakeasy
### Generated
- [csharp v1.0.0-beta.6] .
### Releases
- [NuGet v1.0.0-beta.6] https://www.nuget.org/packages/Docusign.IAM.SDK/1.0.0-beta.6 - .
9 changes: 9 additions & 0 deletions docs/Models/Components/BrandColor.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# BrandColor


## Fields

| Field | Type | Required | Description |
| ------------------ | ------------------ | ------------------ | ------------------ |
| `Name` | *string* | :heavy_minus_sign: | N/A |
| `Value` | *string* | :heavy_minus_sign: | N/A |
10 changes: 10 additions & 0 deletions docs/Models/Components/BrandLogos.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# BrandLogos


## Fields

| Field | Type | Required | Description |
| ------------------ | ------------------ | ------------------ | ------------------ |
| `Primary` | *string* | :heavy_minus_sign: | N/A |
| `Secondary` | *string* | :heavy_minus_sign: | N/A |
| `Email` | *string* | :heavy_minus_sign: | N/A |
21 changes: 21 additions & 0 deletions docs/Models/Components/GetWorkspaceBrandResponse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# GetWorkspaceBrandResponse

The details of a single workspace brand


## Fields

| Field | Type | Required | Description |
| --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- |
| `BrandId` | *string* | :heavy_minus_sign: | N/A |
| `BrandName` | *string* | :heavy_minus_sign: | N/A |
| `BrandCompany` | *string* | :heavy_minus_sign: | N/A |
| `Colors` | List<[BrandColor](../../Models/Components/BrandColor.md)> | :heavy_check_mark: | N/A |
| `Logos` | [BrandLogos](../../Models/Components/BrandLogos.md) | :heavy_minus_sign: | N/A |
| `BrandLanguages` | List<*string*> | :heavy_check_mark: | N/A |
| `DefaultBrandLanguage` | *string* | :heavy_minus_sign: | N/A |
| `IsSendingDefault` | *bool* | :heavy_minus_sign: | N/A |
| `IsSigningDefault` | *bool* | :heavy_minus_sign: | N/A |
| `PrimaryLogoId` | *string* | :heavy_minus_sign: | N/A |
| `SecondaryLogoId` | *string* | :heavy_minus_sign: | N/A |
| `EmailLogoId` | *string* | :heavy_minus_sign: | N/A |
8 changes: 8 additions & 0 deletions docs/Models/Components/UpdateWorkspaceBody.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# UpdateWorkspaceBody


## Fields

| Field | Type | Required | Description |
| --------------------------------- | --------------------------------- | --------------------------------- | --------------------------------- |
| `Name` | *string* | :heavy_check_mark: | The updated name of the workspace |
8 changes: 8 additions & 0 deletions docs/Models/Components/UpdateWorkspaceBrandBody.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# UpdateWorkspaceBrandBody


## Fields

| Field | Type | Required | Description |
| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `BrandId` | *string* | :heavy_minus_sign: | A GUID value that identifies a brand. For more information, see <a href="https://developers.docusign.com/docs/esign-rest-api/esign101/concepts/branding/">Branding</a> |
21 changes: 21 additions & 0 deletions docs/Models/Components/UpdateWorkspaceBrandResponse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# UpdateWorkspaceBrandResponse

The brand details set for a workspace


## Fields

| Field | Type | Required | Description |
| --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- |
| `BrandId` | *string* | :heavy_minus_sign: | N/A |
| `BrandName` | *string* | :heavy_minus_sign: | N/A |
| `BrandCompany` | *string* | :heavy_minus_sign: | N/A |
| `Colors` | List<[BrandColor](../../Models/Components/BrandColor.md)> | :heavy_check_mark: | N/A |
| `Logos` | [BrandLogos](../../Models/Components/BrandLogos.md) | :heavy_minus_sign: | N/A |
| `BrandLanguages` | List<*string*> | :heavy_check_mark: | N/A |
| `DefaultBrandLanguage` | *string* | :heavy_minus_sign: | N/A |
| `IsSendingDefault` | *bool* | :heavy_minus_sign: | N/A |
| `IsSigningDefault` | *bool* | :heavy_minus_sign: | N/A |
| `PrimaryLogoId` | *string* | :heavy_minus_sign: | N/A |
| `SecondaryLogoId` | *string* | :heavy_minus_sign: | N/A |
| `EmailLogoId` | *string* | :heavy_minus_sign: | N/A |
14 changes: 14 additions & 0 deletions docs/Models/Components/UpdateWorkspaceResponse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# UpdateWorkspaceResponse

The details of a single workspace


## Fields

| Field | Type | Required | Description |
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
| `WorkspaceId` | *string* | :heavy_check_mark: | The ID of the workspace |
| `Name` | *string* | :heavy_minus_sign: | The name of the workspace |
| `CreatedDate` | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0) | :heavy_minus_sign: | The date the workspace was created |
| `CreatedByUserId` | *string* | :heavy_minus_sign: | The ID of the user who created the workspace |
| `WorkspaceOwnerIds` | List<*string*> | :heavy_minus_sign: | The list of user IDs of the workspace owners |
Loading