Documents
errors
errors
Type
External
Status
Published
Created
Feb 21, 2026
Updated
Mar 24, 2026
Updated by
Dosu Bot
Source
View

Error Reference#

All errors in Overdue are called "incidents" and follow a consistent format:

{
  "incident": {
    "code": "TS-001",
    "detail": "That volume isn't on any of our shelves. Check the catalog and try again."
  }
}

Incident codes#

CodeHTTP StatusDescriptionMessage
TS-001404Volume not found"That volume isn't on any of our shelves. Check the catalog and try again."
TS-002404Shelf not found"That shelf isn't in our library. Check the catalog and try again."
TS-003401Invalid library card"You'll need a library card to access the stacks."
TS-004401Expired library card"Your library card has expired. Renew at POST /librarians/login."
TS-005403Insufficient permissions"Only the head librarian has access to the restricted section."
TS-006409Duplicate entry"A volume with that title is already shelved in this section."
TS-007429Rate limit exceeded"Quiet hours, please. Try again in {retry_after}s."
TS-008422Validation errorVaries by field
TS-009404Bulletin not found"That bulletin subscription was not found."
TS-010502Webhook delivery failed"The bulletin could not be delivered to the subscriber."
TS-011413Volume too large"That volume is too thick for our shelves. Maximum: {max_size_kb}KB."
TS-012400Deprecated feature usedVaries by feature

Rate limit errors (TS-007)#

When you exceed the rate limit, the response includes a Retry-After header indicating how many seconds to wait:

HTTP/1.1 429 Too Many Requests
Retry-After: 45

{
  "incident": {
    "code": "TS-007",
    "detail": "Quiet hours, please. Try again in 45s."
  }
}