Postman Collection
Import AuxVault API into Postman for testing.
Quick Start
- Download Postman: https://www.postman.com/downloads/
- Import AuxVault collection
- Set environment variables
- Start testing!
Environment Variables
{
"api_base_url": "https://sandbox-api.auxvault.com/api/v1",
"api_key": "test_your_api_key",
"tenant_id": "tenant_test_123"
}
Collection Structure
- Authentication
- Login
- Verify Token
- Transactions
- Create Sale
- Create Auth
- Capture
- Void
- Refund
- Subscriptions
- Create
- Pause
- Resume
- Cancel
- Invoices
- Create
- Send
- Get PDF
Pre-request Script
// Set auth headers
pm.request.headers.add({
key: 'Authorization',
value: 'Bearer ' + pm.environment.get('api_key')
});
pm.request.headers.add({
key: 'X-Tenant-ID',
value: pm.environment.get('tenant_id')
});
Download: AuxVault Postman Collection