Invoice Created Time
Pronunciation: IN-voys kree-AY-tid tym
Definition
Invoice created time is the timestamp at which an invoice record is generated and becomes identifiable within the payment system. It is normally assigned by the authoritative server when the create request succeeds, not by the payer's browser. The timestamp can anchor the payment window, quote lifetime, audit sequence, and ordering of later state transitions. Created time is not the same as due time, expired time, or paid time. Those fields describe contractual deadlines or later lifecycle events rather than the origin of the invoice record.
Overview
Invoice created time is the timestamp at which an invoice record is generated and becomes identifiable within the payment system. Its practical value comes from making the payment lifecycle deterministic for the payer, merchant, support team, and accounting system.
It is normally assigned by the authoritative server when the create request succeeds, not by the payer’s browser. The timestamp can anchor the payment window, quote lifetime, audit sequence, and ordering of later state transitions. In practice, the system should preserve the original request, the observed blockchain or checkout evidence, and every status change that affects this value. This makes support investigations and financial reconciliation possible without reconstructing the payment from screenshots or mutable client data.
Systems should store it in an unambiguous standard such as UTC with sufficient precision, prevent clients from overwriting it, and distinguish it from the time a checkout page is first opened. The implementation should use exact asset precision, authenticated server-side updates, and idempotent processing wherever repeated API calls, blockchain observations, or webhook deliveries can occur.
Created time is not the same as due time, expired time, or paid time. Those fields describe contractual deadlines or later lifecycle events rather than the origin of the invoice record. It should be interpreted alongside Invoice Due Time, Invoice Expired Time, Invoice Payment Window. These concepts belong to the same workflow, but each answers a different operational question and should not be collapsed into one ambiguous field.
If an invoice is created at 14:00 UTC with a 30-minute payment window, its calculated expiry may be 14:30 UTC even when the customer opens the payment page several minutes later. The practical test is whether a merchant can explain how the value was produced, verify it independently, and apply the same rule consistently when the payment is delayed, duplicated, partially paid, refunded, or reviewed manually.
Key Takeaway
Invoice created time is the timestamp at which an invoice record is generated and becomes identifiable within the payment system; its meaning and evidence must remain consistent across checkout, monitoring, fulfillment, and reconciliation.
Sources
- The Invoice object — Stripe Documentation (2026-08-02)
- Invoices API — PayPal Developer Documentation (2026-08-02)
- Generate Invoice — OxaPay (2026-08-02)