Installer.com Docs

Get Help

Support resources, troubleshooting, and contact information

Support Resources

Contact Support

ChannelDetails
Email[email protected]
In-app chatAvailable in the bottom-right corner of localhost:4300
Response timeBusiness hours (CET): within 4 hours

Reporting API Issues

When reporting an API issue, include the following to help us resolve it quickly:

1. API endpoint (method + URL)
2. Request headers (redact the Authorization token)
3. Request body (redact sensitive data)
4. Response status code
5. Response body
6. Timestamp (ISO 8601)
7. Organization/router ID

Example bug report:

Endpoint: POST /api/routers/{routerId}/orders
Status: 422
Timestamp: 2025-06-15T14:30:00Z
Router ID: abc-123-def

Request body:
{
  "name": "Test Order",
  "orderTemplateId": "template-uuid"
}

Response:
{
  "error": "Validation Error",
  "message": "customerName is required"
}

Common Issues

Authentication

IssueSolution
401 UnauthorizedToken is missing, expired, or revoked. Create a new token.
403 ForbiddenThe token's user lacks the required role. Check user permissions in Settings.

API Requests

IssueSolution
404 Not FoundVerify the routerId and resource ID in the URL path.
422 Validation ErrorCheck required fields in the API Reference.
429 Too Many RequestsYou've hit the rate limit. Implement exponential backoff.
500 Internal Server ErrorServer-side issue. Retry after a moment, then contact support.

Webhooks

IssueSolution
Not receiving eventsEnsure your endpoint is publicly accessible and returns 2xx.
Signature mismatchUse the raw request body (not parsed JSON) for HMAC verification.
Duplicate deliveriesImplement idempotency. See the Webhooks guide.

Platform Status

Check real-time platform status and subscribe to incident notifications at status.installer.com.

Subscribe to status notifications to receive alerts for planned maintenance and incidents that may affect your integration.

On this page