500
Internal server error
https://api.quotastack.io/errors/internal
Something broke inside QuotaStack. The call may or may not have gone through.
Why it happened
- A QuotaStack bug, or a database that was briefly out of reach.
- The access-control service was down. That failure lands here, not on a
403page.
How to fix it
- Send the call again with the same
Idempotency-Key. A replay is safe, and a double charge is not. - Read the balance or the record afterwards, to see whether the first call landed.
- Tell support what you sent and when, if it keeps happening.
Example response 500
{
"type": "https://api.quotastack.io/errors/internal",
"title": "Internal Server Error",
"status": 500,
"detail": "Failed to grant credits."
} Which calls return this
GET /v1/customersPOST /v1/customersGET /v1/customers/{id}PATCH /v1/customers/{id}DELETE /v1/customers/{id}GET /v1/customer-by-external-id/{external_id}PATCH /v1/customer-by-external-id/{external_id}DELETE /v1/customer-by-external-id/{external_id}GET /v1/customers/{customer_id}/creditsPOST /v1/customers/{customer_id}/credits/grantPOST /v1/customers/{customer_id}/credits/adjustGET /v1/customers/{customer_id}/credits/historyGET /v1/customers/{customer_id}/overageGET /v1/customer-by-external-id/{external_id}/creditsPOST /v1/customer-by-external-id/{external_id}/credits/grantPOST /v1/customer-by-external-id/{external_id}/credits/adjustGET /v1/customer-by-external-id/{external_id}/credits/historyGET /v1/customer-by-external-id/{external_id}/overageGET /v1/entitlements/checkPOST /v1/usagePOST /v1/usage/batchPOST /v1/imports/customersPOST /v1/subscriptionsGET /v1/audit-log
See also
● raw markdown · internal.md ↗ — this is exactly what an agent fetches
Loading…