Ceramic · Example Payload

Create Event

Example request to POST /ceramic/events to create a new event on the Ceramic network.

DecentralizedWeb3Data StreamsDIDIPFSBlockchainEvent StreamingComposeDB

Create Event is an example object payload from Ceramic, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

summarydescriptionrequestresponse

Example Payload

Raw ↑
{
  "summary": "Create a new Ceramic event",
  "description": "Example request to POST /ceramic/events to create a new event on the Ceramic network.",
  "request": {
    "method": "POST",
    "url": "http://localhost:5101/ceramic/events",
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "data": "uomdkYXRhkWVoZWxsb2V3b3JsZA"
    }
  },
  "response": {
    "status": 204,
    "description": "Event created successfully"
  }
}