How AI is applied across API Evangelist and APIs.io. Read my AI disclosure →
API Evangelist API Evangelist
Discovery
Learnings
Guidance
Toolbox
Alignment
API Evangelist LLC

TreasurySpring Event Checkpoints API

Server-managed cursors for stateless event stream consumers.In most cases, checkpoints are not needed. If your system can persist data locally (e.g. in a database, file, or key-value store), store the `cursor` value from `GET /event` yourself and pass it as `start_cursor` on the next request.**When to use checkpoints:**Use this endpoint if your system runs in an environment that cannot reliably persist state between invocations — for example, a stateless function, a script with no backing store, or a system that delegates position tracking to TreasurySpring entirely.A checkpoint is a named record stored server-side that remembers where your last successful sync run ended. Instead of storing the cursor yourself, you store it here and retrieve it at the start of each sync run:1. **Create** a checkpoint once: `PUT /event/checkpoint/{name}` — the cursor is initialised to the current end of the event stream.2. **Read** the checkpoint at the start of each sync run: `GET /event/checkpoint/{name}` → `cursor`, `checkpointVersion`.3. **Fetch events** from that cursor: `GET /event?start_cursor={cursor}`.4. **Advance** the checkpoint after successful processing: `PATCH /event/checkpoint/{name}` with `expectedCheckpointVersion` and `newCursor`. The `checkpointVersion` acts as a safety check — if another process has already advanced the checkpoint since you last read it, the request returns a 409 Conflict with the current state so you can reconcile before retrying.Checkpoints are scoped to the authenticated API user.

TreasurySpring Event Checkpoints API is one of 13 APIs that TreasurySpring publishes on the APIs.io network, described by a machine-readable OpenAPI specification.

Tagged areas include Event Checkpoints. The published artifact set on APIs.io includes an OpenAPI specification, API documentation, and an API reference.

This API exposes 5 operations across 2 paths, and defines 9 schemas. It is described by OpenAPI 3.2.0, at version v0.7.3.

Requests are made against 2 base URLs: https://api.treasuryspring.com/api/v1, https://api.sandbox.treasuryspring.com/api/v1.

5 operations 2 paths 9 schemas 1 DELETE2 GET1 PATCH1 PUT

Metadata

The identity and technical contract details declared by the specification.

Specification
OpenAPI 3.2.0
API Version
v0.7.3
Base URL
https://api.treasuryspring.com/api/v1
Authentication
HTTP Basic, HTTP Bearer
Resource Areas
1

Authentication & Security 2

TreasurySpring Event Checkpoints API declares 2 security schemes for authenticating requests. It accepts HTTP basic authentication (basicAuth). It accepts HTTP bearer tokens (bearerAuth).

  • basicAuth — Base64-encoded clientid:clientsecret (sent as Authorization: Basic ). Used by the OAuth token-exchange endpoint.
  • bearerAuth — API Key or OAuth access token (sent as Authorization: Bearer ).

Paths & Operations 5

Across 2 paths, the API surfaces 5 operations — 1 DELETE, 2 GET, 1 PATCH, 1 PUT. Each is listed below with its method, path, parameters, and response codes.

Event Checkpoints 5

Server-managed cursors for stateless event stream consumers. In most cases, checkpoints are not needed. If your system can persist data locally (e.g. in a database, file, or key-v…

GET
/event/checkpoint
List event checkpoints
get.event.checkpoints 2 params → 200
DELETE
/event/checkpoint/{name}
Delete an event checkpoint
delete.event.checkpoint 2 params → 200
GET
/event/checkpoint/{name}
Get an event checkpoint by name
get.event.checkpoint 1 param → 200
PATCH
/event/checkpoint/{name}
Advance an event checkpoint cursor
patch.event.checkpoint 1 param body → 200
PUT
/event/checkpoint/{name}
Create or get an event checkpoint
put.event.checkpoint 1 param body → 200

Schemas 9

The contract defines 9 schemas that model the data the API accepts and returns. The most detailed are CheckpointData (5 properties), DeleteCheckpointResponse (2 properties), UpsertCheckpointResponse (2 properties), CheckpointRef (2 properties). Each schema is shown below with its type and property counts.

PatchCheckpointBody
object
2 properties 1 required
CheckpointRef
object
2 properties 2 required
PatchCheckpointResponse
object
1 property 1 required
UpsertCheckpointResponse
object
2 properties 2 required
PutCheckpointBody
object
1 property
DeleteCheckpointResponse
object
2 properties 2 required
GetCheckpointResponse
object
1 property 1 required
ListCheckpointsResponse
object
1 property 1 required
CheckpointData
object
5 properties 5 required

Specification

The full machine-readable OpenAPI contract behind this narrative.

Source

treasuryspring-event-checkpoints-api-openapi.yml Raw ↑

Other APIs TreasurySpring publishes across the network.

TreasurySpring Calendar API
TreasurySpring Cells API
TreasurySpring Entities API
TreasurySpring Events API
TreasurySpring Healthcheck API
TreasurySpring Holdings API
TreasurySpring Indications API
TreasurySpring OAuth API
TreasurySpring Obligor Exposure API
TreasurySpring Subscriptions API
TreasurySpring Tasks API
TreasurySpring Webhooks API
Where this information came from

This is an independent, third-party profile of TreasurySpring Event Checkpoints API, published by API Evangelist. We do not operate, host, resell, or support these APIs, and we are not affiliated with or endorsed by the company unless stated above. Everything here is built from publicly available information — the company's own site, developer portal, documentation, public repositories, and the specifications it publishes for public use. Nothing is obtained by breaching a system, defeating an access control, or using credentials.

The Kin Score and Agent Readiness rating are independently calculated assessments of a company's public API artifacts, scored against a published rubric. They are not certifications, endorsements, security assessments, or audits.

Corrections, re-scores, and removal are free — no partnership or purchase required, and you do not need to justify the request. A removed company is recorded as unrated, never scored zero for having asked. Acknowledgement within one business day; removal within two.

info@apievangelist.com · Read the full data-sourcing policy →
On a security or compliance team? Put security in the subject line and you will get a person, not a form — we will tell you exactly which public URLs this profile was built from.