Postman Collection
Explore the inSigner Cloud API interactively using our Postman collection. Every endpoint is pre-configured with examples, descriptions, and environment variables.
Import the collection
Section titled “Import the collection”-
Download the collection from the inSigner dashboard under Developers → API Docs → Postman Collection, or use this link:
https://app.insigner.co/api/v1/postman -
Open Postman and click Import (top-left).
-
Paste the URL or drag the downloaded JSON file into the import dialog.
-
Set up the environment: Create a new Postman Environment with these variables:
Variable Value baseUrlhttps://app.insigner.co/api/v1apiKeyisk_YOUR_API_KEY -
Select the environment in the top-right dropdown and start making requests.
Collection structure
Section titled “Collection structure”The collection is organized into folders matching the API structure:
inSigner Cloud API v1├── Documents│ ├── List documents│ ├── Create document│ ├── Get document│ ├── Delete document│ ├── Upload document file│ ├── Send document│ ├── Download document│ ├── Cancel document│ └── Get audit trail├── Fields│ ├── List fields│ ├── Create field│ ├── Update field│ └── Delete field├── Signers│ ├── List signers│ ├── Add signer│ ├── Remove signer│ └── Send reminder├── Attachments│ ├── List attachments│ ├── Upload attachment│ └── Delete attachment├── Templates│ ├── List templates│ ├── Get template│ └── Use template├── Campaigns│ ├── List campaigns│ ├── Create campaign│ ├── Get campaign│ ├── Update campaign│ ├── Delete campaign│ └── List submissions├── Bulk Send│ ├── List bulk sends│ ├── Create bulk send│ ├── Get bulk send│ └── Delete bulk send├── Webhooks│ ├── List webhooks│ ├── Create webhook│ ├── Get webhook│ ├── Update webhook│ └── Delete webhook├── Organization│ ├── Get organization│ └── List members└── Verification └── Verify document- Chaining requests: The collection uses Postman scripts to save
documentIdfrom creation responses, so subsequent requests (upload, add signers, send) automatically use the right ID. - Pre-request scripts: Auth headers are automatically set from the environment variable.
- Tests: Each request includes basic tests to verify response status codes and data shapes.