Skip to content

Invoice Paid

Emitted when payment for an invoice has been completed in ChronosHub. Alongside the financial details of the transaction — amount, tax, currency, payment method, and any institutional agreement that applied — the payload carries a shared manuscript-context block (publication and manuscript identity, journal, corresponding author, and agreement) so the event can be reconciled against a manuscript without a separate lookup.

Payload

json
{
  "publicationId": "PUB-2026-000123",
  "manuscriptId": "MS-2026-000123",
  "manuscriptTitle": "Advances in Example-Driven Research",
  "articleType": "Research Article",
  "doi": "10.1234/jes.2026.000123",
  "journalId": "JRN-001",
  "journalName": "Journal of Example Studies",
  "correspondingAuthorName": "Jane Doe",
  "authorCountry": "United Kingdom",
  "ringgoldName": "Example University",
  "ringgoldId": "12345",
  "dateSubmitted": "2026-01-15T08:00:00Z",
  "dateAccepted": "2026-03-10T11:20:00Z",
  "dateArticleWithdrawn": null,
  "institutionalAgreementName": "Example University Read & Publish",
  "institutionalAgreementType": "ReadAndPublish",
  "agreementDate": "2026-01-01T00:00:00Z",
  "invoiceId": 987654,
  "invoiceDate": "2026-04-19T10:00:00Z",
  "datePaymentCompleted": "2026-04-20T14:15:00Z",
  "invoiceRef": "INV-2026-000123",
  "paymentType": "CreditCard",
  "price": 1200.00,
  "currency": "USD",
  "paymentCharge": 35.50,
  "paymentCompletedBy": "user-abc123",
  "vat": 240.00,
  "vatPercent": 20.0,
  "orderDiscount": 100.00
}

Fields

Manuscript context

FieldTypeDescription
publicationIdstringIdentifier of the publication this invoice relates to.
manuscriptIdstringPublisher-facing manuscript reference for the publication. Empty string when none is recorded.
manuscriptTitlestringTitle of the manuscript.
articleTypestringArticle type/category (for example, Research Article, Review). Empty string when not set.
doistringDOI of the publication. Empty string when not yet assigned.
journalIdstringIdentifier of the journal the publication belongs to.
journalNamestringDisplay name of the journal.
correspondingAuthorNamestringFull name of the corresponding author. Empty string when not available.
authorCountrystringCountry of the corresponding author's affiliation. Empty string when not available.
ringgoldNamestringInstitution name of the corresponding author's affiliation (Ringgold-registered organisation name). Empty string when not available.
ringgoldIdstringRinggold identifier of the corresponding author's affiliation. Empty string when not available.
dateSubmittedstring (ISO 8601 date-time, UTC) or nullTimestamp at which the manuscript was submitted. null when not recorded.
dateAcceptedstring (ISO 8601 date-time, UTC) or nullTimestamp at which the manuscript was accepted. null when not recorded.
dateArticleWithdrawnstring (ISO 8601 date-time, UTC) or nullTimestamp at which the article was withdrawn, if applicable. null for a normal paid invoice.
institutionalAgreementNamestringName of the institutional agreement that funded or discounted this invoice (for example, Italy CARE-CRUI Agreement, Research 4 Life - AL, German Academic Consortium Discount). Empty string when no agreement applied.
institutionalAgreementTypestringCategory of the institutional agreement (for example, Voucher, Waiver, Discount). Empty string when no agreement applied.
agreementDatestring (ISO 8601 date-time, UTC) or nullStart date of the institutional agreement that applied. null when no agreement applied.

Invoice and payment

FieldTypeDescription
invoiceIdintegerIdentifier of the invoice in ChronosHub.
invoiceDatestring (ISO 8601 date-time, UTC) or nullTimestamp at which the invoice was created. Serves as both the invoice date and the order date. null when not recorded.
datePaymentCompletedstring (ISO 8601 date-time, UTC)Timestamp at which the payment was completed.
invoiceRefstringPartner- or publisher-facing invoice reference (for example, the printed invoice number). Empty string when no reference is available.
paymentTypestringHow the invoice was paid (for example, CreditCard, Invoice).
pricedecimalNet price of the invoice, in the currency given by currency. Excludes VAT and payment charges.
currencystring (ISO 4217)Three-letter currency code for all monetary fields in this payload (for example, USD, EUR, GBP).
paymentChargedecimalSurcharge applied by the payment provider (for example, a card processing fee), in the same currency as price. Defaults to 0.
paymentCompletedBystringIdentifier of the user who completed the payment.
vatdecimalVAT amount included in the invoice, in the same currency as price. Defaults to 0.
vatPercentnumber (float)VAT rate applied to the invoice, expressed as a percentage (for example, 20.0 for 20%). Defaults to 0.
orderDiscountdecimalDiscount applied to the order, in the same currency as price. Falls back to the institutional agreement's discount when no order-level discount is set. Defaults to 0.

Notes

  • All timestamps are serialised as ISO 8601 strings.
  • The manuscript context block (identity, journal, corresponding author, and institutional agreement) is shared with the License Signed event, so a partner can build or reconcile a manuscript record from either post-acceptance milestone.
  • Nullable date fields (dateSubmitted, dateAccepted, dateArticleWithdrawn, agreementDate, invoiceDate) are emitted as null when no value is recorded. String fields default to an empty string rather than null.
  • The corresponding-author fields describe the first listed corresponding author and their primary affiliation.
  • Monetary amounts (price, paymentCharge, vat, orderDiscount) are expressed in the currency given by currency and are serialised as JSON numbers with decimal precision.
  • This payload describes the event data only — not the transport-level envelope (event id, event type, signature headers, and so on).