Recent marketplace operations across the fleet
const url = 'https://api.flotera.com/api/v1/marketplaces/operations';const options = { method: 'GET', headers: {cookie: '__Host-erm_session=<__Host-erm_session>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.flotera.com/api/v1/marketplaces/operations \ --cookie __Host-erm_session=<__Host-erm_session>The append-only operations log: rentals observed by the sync and every manual action (offers, maintenance, links, accounts), newest first. Unlinking a machine does not erase its history.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Latest operations, newest first.
object
One row of the append-only operations log. details mirrors the payload of the matching event or the terms sent to the platform (money as decimal strings) — the log answers questions by itself, without a trip to the outbox.
object
Null for account-level operations (connect/disconnect).
Supported marketplace. The database constrains the same two values, so a third one is a migration rather than a new string.
object
RFC 3339 UTC with microsecond precision.
Example
{ "operations": [ { "marketplace": "vast", "kind": "rental_started", "created_at": "2026-07-25T10:15:30.123456Z" } ]}Missing/invalid credentials (code=unauthorized).
RFC 9457 problem document with a stable machine code.
object
Stable machine-readable error code (03 §2.4).
UUID (v7 for new entities; v4 accepted during migration).
object
JSON Pointer to the offending field.
Example
{ "type": "https://ermeon.com/problems/validation", "code": "unauthorized"}Authenticated but not permitted. code=forbidden — role/scope mismatch; code=feature_not_entitled — the plan does not include the capability; code=account_frozen — the account is frozen and this operation is declared x-ermeon-frozen: deny. The three are deliberately distinct: only the last one is fixed by a top-up (13 §5.6).
RFC 9457 problem document with a stable machine code.
object
Stable machine-readable error code (03 §2.4).
UUID (v7 for new entities; v4 accepted during migration).
object
JSON Pointer to the offending field.
Example
{ "type": "https://ermeon.com/problems/validation", "code": "unauthorized"}A dependency the endpoint needs is not configured or is temporarily unavailable (code=unavailable). The rest of the API keeps working — an absent external integration must not take the service down.
RFC 9457 problem document with a stable machine code.
object
Stable machine-readable error code (03 §2.4).
UUID (v7 for new entities; v4 accepted during migration).
object
JSON Pointer to the offending field.
Example
{ "type": "https://ermeon.com/problems/validation", "code": "unauthorized"}