Skip to content

Commit

Permalink
Merge pull request #141 from friggframework/fr/ironclad-list-worflow-…
Browse files Browse the repository at this point in the history
…signatures

List all workflow signatures request
  • Loading branch information
seanspeaks authored Mar 28, 2023
2 parents 48c9efa + ebf3a82 commit 8a9f2f6
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions api-module-library/ironclad/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,13 @@ class Api extends ApiKeyRequester {
const response = await this._get(options);
return response;
}
async listAllWorkflowSignatures(id) {
const options = {
url: this.baseUrl() + this.URLs.workflowsByID(id) + '/signatures',
};
const response = await this._get(options);
return response;
}

async updateWorkflowApprovals(id, roleID, body) {
const options = {
Expand Down

0 comments on commit 8a9f2f6

Please sign in to comment.