GetItDoneGetItDone Docs
Public APIError codes
Public APIError codes

Idempotency-Key header required (idempotency_key_missing)

What the GetItDone API problem code idempotency_key_missing (HTTP 400) means, what causes it, and how to fix it.

What it means

An Idempotency-Key was required for this call but none was supplied or it was malformed.

Likely causes

  • The header was omitted where the client library expected one.
  • The header value was empty or longer than 255 characters.

How to fix

  • Send an Idempotency-Key header (1–255 visible ASCII characters; a UUID works well).
  • Reuse the SAME key when retrying the SAME request to replay the first result.

Example problem+json

{
    "type": "https://nowgetitdone.com/docs/api/problems/idempotency-key-missing",
    "title": "Idempotency-Key header required",
    "status": 400,
    "code": "idempotency_key_missing",
    "request_id": "req_a1b2c3d4"
}

On this page