
Security News
Feross on TBPN: How North Korea Hijacked Axios
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.
signrequest-client
Advanced tools
SignrequestClient - JavaScript client for SignRequest.com
Then install it via:
npm install signrequest-client --save
Using Webpack you may encounter the following error: "Module not found: Error: Cannot resolve module", most certainly you should disable AMD loader. Add/merge the following section to your webpack config:
module: {
rules: [
{
parser: {
amd: false
}
}
]
}
Full API documentation, including code samples, can be found here: https://signrequest.com/api/v1/docs/
Please follow the installation instruction and execute the following JS code:
var SignrequestClient = require('signrequest-client');
var defaultClient = SignrequestClient.ApiClient.instance;
// Configure API key authorization: Token
var Token = defaultClient.authentications["Token"];
Token.apiKey = "YOUR API KEY";
Token.apiKeyPrefix = "Token";
var api = new SignrequestClient.DocumentsApi();
var data = new SignrequestClient.Document();
data.file_from_url =
"https://docs.google.com/document/d/1oI2R1SxfMNZXiz3jCQvorpoklF9xq_dCJnOpkI-zo80/edit?usp=sharing";
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log("API called successfully. Returned data: " + data);
}
};
api.documentsCreate(data, callback);
All URIs are relative to https://signrequest.com/api/v1
| Class | Method | HTTP request | Description |
|---|---|---|---|
| SignrequestClient.ApiTokensApi | apiTokensList | GET /api-tokens/ | Retrieve a list of API tokens |
| SignrequestClient.DocumentAttachmentsApi | documentAttachmentsCreate | POST /document-attachments/ | Create a Document Attachment |
| SignrequestClient.DocumentAttachmentsApi | documentAttachmentsList | GET /document-attachments/ | Retrieve a list of Document Attachments |
| SignrequestClient.DocumentAttachmentsApi | documentAttachmentsRead | GET /document-attachments/{uuid}/ | Retrieve a Document Attachment |
| SignrequestClient.DocumentsApi | documentsCreate | POST /documents/ | Create a Document |
| SignrequestClient.DocumentsApi | documentsDelete | DELETE /documents/{uuid}/ | Delete a Document |
| SignrequestClient.DocumentsApi | documentsList | GET /documents/ | Retrieve a list of Documents |
| SignrequestClient.DocumentsApi | documentsRead | GET /documents/{uuid}/ | Retrieve a Document |
| SignrequestClient.DocumentsSearchApi | documentsSearchList | GET /documents-search/ | Search documents |
| SignrequestClient.EventsApi | eventsList | GET /events/ | Retrieve a list of Events |
| SignrequestClient.EventsApi | eventsRead | GET /events/{id}/ | Retrieve an Event |
| SignrequestClient.SignrequestQuickCreateApi | signrequestQuickCreateCreate | POST /signrequest-quick-create/ | Quick create a SignRequest |
| SignrequestClient.SignrequestsApi | signrequestsCancelSignrequest | POST /signrequests/{uuid}/cancel_signrequest/ | Cancel a SignRequest |
| SignrequestClient.SignrequestsApi | signrequestsCreate | POST /signrequests/ | Create a SignRequest |
| SignrequestClient.SignrequestsApi | signrequestsList | GET /signrequests/ | Retrieve a list of SignRequests |
| SignrequestClient.SignrequestsApi | signrequestsRead | GET /signrequests/{uuid}/ | Retrieve a SignRequest |
| SignrequestClient.SignrequestsApi | signrequestsResendSignrequestEmail | POST /signrequests/{uuid}/resend_signrequest_email/ | Resend a SignRequest |
| SignrequestClient.TeamMembersApi | teamMembersList | GET /team-members/ | Retrieve a list of Team Members |
| SignrequestClient.TeamMembersApi | teamMembersRead | GET /team-members/{uuid}/ | Retrieve a Team Member |
| SignrequestClient.TeamsApi | teamsCreate | POST /teams/ | Create a Team |
| SignrequestClient.TeamsApi | teamsDelete | DELETE /teams/{subdomain}/ | Delete a Team |
| SignrequestClient.TeamsApi | teamsInviteMember | POST /teams/{subdomain}/invite_member/ | Invite a Team Member |
| SignrequestClient.TeamsApi | teamsList | GET /teams/ | Retrieve a list of Teams |
| SignrequestClient.TeamsApi | teamsPartialUpdate | PATCH /teams/{subdomain}/ | Update a Team |
| SignrequestClient.TeamsApi | teamsRead | GET /teams/{subdomain}/ | Retrieve a Team |
| SignrequestClient.TemplatesApi | templatesList | GET /templates/ | Retrieve a list of Templates |
| SignrequestClient.TemplatesApi | templatesRead | GET /templates/{uuid}/ | Retrieve a Template |
| SignrequestClient.WebhooksApi | webhooksCreate | POST /webhooks/ | Create a Webhook |
| SignrequestClient.WebhooksApi | webhooksDelete | DELETE /webhooks/{uuid}/ | Delete a Webhook |
| SignrequestClient.WebhooksApi | webhooksList | GET /webhooks/ | Retrieve a list of Webhooks |
| SignrequestClient.WebhooksApi | webhooksPartialUpdate | PATCH /webhooks/{uuid}/ | Partially update a Webhook |
| SignrequestClient.WebhooksApi | webhooksRead | GET /webhooks/{uuid}/ | Retrieve a Webhook |
| SignrequestClient.WebhooksApi | webhooksUpdate | PUT /webhooks/{uuid}/ | Update a Webhook |
FAQs
API client for SignRequest.com
The npm package signrequest-client receives a total of 46 weekly downloads. As such, signrequest-client popularity was classified as not popular.
We found that signrequest-client demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.

Security News
OpenSSF has issued a high-severity advisory warning open source developers of an active Slack-based campaign using impersonation to deliver malware.

Research
/Security News
Malicious packages published to npm, PyPI, Go Modules, crates.io, and Packagist impersonate developer tooling to fetch staged malware, steal credentials and wallets, and enable remote access.