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
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,30 @@
See [DocuSign Support Center](https://support.docusign.com/en/releasenotes/) for Product Release Notes.


## [v3.0.0-rc1] - Admin API v2.1-1.4.0 - 2024-08-27
### Breaking Changes
<details>
<summary>API Changes (Click to expand)</summary>

<br/>
<div style="margin-left: 20px;">

Added new query parameter "include_ds_groups" to the API "/v2/organizations/{organizationId}/users":

<h3>Added New APIs for Account Creation</h3>
<li>GET: get subscription details for organization</li>
<li>POST: initiate Create account request</li>
<li>GET: get ongoing process details by org ID</li>
<li>GET: get individual process details by org ID, asset group ID, asset group work ID</li>


</div>
</details>

### Other Changes
- Added support for version v2.1-1.4.0 of the DocuSign Admin API.
- Updated the SDK release version.

## [v2.3.0-rc1] - Admin API v2.1-1.3.0 - 2024-04-23
### Changed
**Security Updates**
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "docusign-admin",
"version": "2.3.0-rc1",
"description": "The DocuSign Admin API enables you to automate user management with your existing systems while ensuring governance and compliance.",
"version": "3.0.0-rc1",
"description": "The Docusign Admin API enables you to automate user management with your existing systems while ensuring governance and compliance.",
"license": "MIT",
"main": "src/index.js",
"author": "DocuSign Developer Center <devcenter@docusign.com>",
Expand Down Expand Up @@ -64,6 +64,7 @@
"jsdoc": "3.6.10",
"mocha": "~5.0.4",
"mocha-junit-reporter": "^1.18.0",
"pdf-parse-fork": "^1.2.0",
"semistandard": "^12.0.1"
}
}
10 changes: 10 additions & 0 deletions src/ApiClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,16 @@
defaultHeaders[header] = value;
};

/**
* Sets default JWT authorization token for APIs.
*/
exports.prototype.setJWTToken = function setJWTToken(token){
if(!token){
throw new Error("Missing the required parameter 'token' when calling setJWTToken.");
}
defaultHeaders["Authorization"] = `Bearer ${token}`;
}

/**
* Returns a string representation for an actual parameter.
* @param param The actual parameter.
Expand Down
2 changes: 1 addition & 1 deletion src/api/AccountsApi.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* DocuSign Admin API
* Docusign Admin API
* An API for an organization administrator to manage organizations, accounts and users
*
* OpenAPI spec version: v2.1
Expand Down
2 changes: 1 addition & 1 deletion src/api/BulkExportsApi.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* DocuSign Admin API
* Docusign Admin API
* An API for an organization administrator to manage organizations, accounts and users
*
* OpenAPI spec version: v2.1
Expand Down
2 changes: 1 addition & 1 deletion src/api/BulkImportsApi.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* DocuSign Admin API
* Docusign Admin API
* An API for an organization administrator to manage organizations, accounts and users
*
* OpenAPI spec version: v2.1
Expand Down
2 changes: 1 addition & 1 deletion src/api/DSGroupsApi.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* DocuSign Admin API
* Docusign Admin API
* An API for an organization administrator to manage organizations, accounts and users
*
* OpenAPI spec version: v2.1
Expand Down
2 changes: 1 addition & 1 deletion src/api/IdentityProvidersApi.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* DocuSign Admin API
* Docusign Admin API
* An API for an organization administrator to manage organizations, accounts and users
*
* OpenAPI spec version: v2.1
Expand Down
2 changes: 1 addition & 1 deletion src/api/OrganizationsApi.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* DocuSign Admin API
* Docusign Admin API
* An API for an organization administrator to manage organizations, accounts and users
*
* OpenAPI spec version: v2.1
Expand Down
2 changes: 1 addition & 1 deletion src/api/ProductPermissionProfilesApi.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* DocuSign Admin API
* Docusign Admin API
* An API for an organization administrator to manage organizations, accounts and users
*
* OpenAPI spec version: v2.1
Expand Down
Loading