diff --git a/api-module-library/ironclad/api.js b/api-module-library/ironclad/api.js index e8cdc4d1..dd911e19 100644 --- a/api-module-library/ironclad/api.js +++ b/api-module-library/ironclad/api.js @@ -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 = {