Skip to content

Postman Collection

Explore the inSigner Cloud API interactively using our Postman collection. Every endpoint is pre-configured with examples, descriptions, and environment variables.

  1. Download the collection from the inSigner dashboard under Developers → API Docs → Postman Collection, or use this link:

    https://app.insigner.co/api/v1/postman
  2. Open Postman and click Import (top-left).

  3. Paste the URL or drag the downloaded JSON file into the import dialog.

  4. Set up the environment: Create a new Postman Environment with these variables:

    VariableValue
    baseUrlhttps://app.insigner.co/api/v1
    apiKeyisk_YOUR_API_KEY
  5. Select the environment in the top-right dropdown and start making requests.

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 documentId from 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.