Skip to main content
PUT
Update Event

Overview

This endpoint updates fields on an event that Cometly has already ingested. It uses sparse PUT semantics: fields you include are replaced, fields you omit are left as they are. At least one updatable field must be provided. Currently amount is the updatable field.

Path Parameters

integer
required
The unique identifier of the event to update — the same id returned by List Events or Get Event.

Request Body

number | null
The new transaction amount. Must be 0 or greater. Numeric strings such as "120.25" are accepted. Sending null clears the amount.

Response

Success Response

string
Confirmation message, e.g. "Event updated successfully"

Error Response

string
Error description explaining what went wrong

Example Requests

Status Codes

Notes

  • Rate Limit: This endpoint has a limit of 60 requests per minute per Space. See Rate Limiting for details.
  • Unknown fields in the request body are ignored.