API contract
Request validation, authorization, ownership, business rules, or rate limits rejected the operation with a structured response.
Platform API responses and webhook deliveries are application-layer contracts. Diagnose them separately from gateway traffic and preserve the complete sanitized JSON or delivery body before retrying. For HTTP proxy and SOCKS5 failures, use proxy errors and troubleshooting.
5xx response.API contract
Request validation, authorization, ownership, business rules, or rate limits rejected the operation with a structured response.
Platform service
A platform component or dependency failed before the operation could return a successful response.
Webhook receiver
Signature verification, payload processing, acknowledgment, or local customer mapping failed after an event was delivered.
| Status | Meaning to investigate | Do not do |
|---|---|---|
400 | Body shape, required field, resource state, or business rule | Retry the same invalid body continuously |
401 | Missing, expired, or invalid API authorization | Send proxy credentials as API credentials |
403 | Role, ownership, or account scope | Hide the denial and continue later steps |
404 | Wrong ID, wrong deployment, or inaccessible resource scope | Assume the global resource does not exist |
429 | API request rate exceeded for the deployment | Launch parallel immediate retries |
5xx | Platform service or dependency failure | Repeat non-idempotent writes without checking state |
The API can return dynamic field arrays in addition to detail,
non_field_errors, and translation. Preserve the full sanitized body in
internal diagnostics instead of parsing only one expected key.
| Failure | Check |
|---|---|
| Signature mismatch | Raw bytes were verified before JSON parsing; Base64 was not converted to hex |
| Repeated deliveries | Endpoint returned an error, timed out, or the acknowledgment was lost |
| Missing individual update | Several changes may have been coalesced into one latest-balance event |
| Incorrect customer mapping | Use user.id, user.reseller_id, order.id, and package.id—not user.username alone |
| Local total differs from report | Run analytics reconciliation for a closed UTC window |
Return a direct 2xx only after the delivery has been verified and durably
accepted. Retries can repeat the same batch, so local updates must be safe to
process more than once. See webhook integration
and the webhook event reference for the exact
signature and payload contracts.
Include:
Use Book a Demo / Contact for an implementation review, or browse the generated API Reference for exact operation contracts.