List receiving inboxes
GET/v1/receiving-inbox
Retrieve all receiving email inboxes configured for the authenticated API user's customer.
Environment-Aware Email Addresses:
The current_receiving_inbox field returns the appropriate email address based on the NODE_ENV environment variable:
- development: Returns
dev_email_address - test: Returns
test_email_address - production: Returns
email_address
Active Status Filtering:
By default, only active inboxes are returned. Use the includeInactive=true query parameter to include inactive inboxes.
Response Fields:
current_receiving_inbox: Email address for current environmentdev_receiving_inbox: Development environment emailtest_receiving_inbox: Test environment emailprod_receiving_inbox: Production environment emaildefault_receiving_inbox: Boolean indicating if this is the default inboxallow_manual_file_upload: Boolean for manual UI upload permissionallow_api_file_upload: Boolean for API file upload permissionallow_api_invoice_upload: Boolean for API invoice upload permissionactive: Boolean indicating if inbox is active
Request
Responses
- 200
- 401
- 403
- 500
Successfully retrieved receiving inboxes
Unauthorized - invalid or missing API key
Forbidden - insufficient permissions
Internal server error