systems.timker.hawlt.putNote

timker.systems

Documentation

Write a note record to the repo. Creates a new record at the given rkey.

main procedure

Write a note record to the repo. Creates a new record at the given rkey.

Input

Encodingapplication/json
rkey stringrecord-key Required

The record key (TID) for this note.

Output

Encodingapplication/json
cid stringcid Required

A content identifier (CID) referencing immutable data.

uri stringat-uri Required

An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).

Try It

Requests are sent directly from your browser. Some servers may block requests due to CORS.

Base URL for XRPC calls (e.g., https://bsky.social)
Enter valid JSON for the request body
View raw schema
{
  "type": "procedure",
  "input": {
    "schema": {
      "type": "object",
      "required": [
        "rkey",
        "record"
      ],
      "properties": {
        "rkey": {
          "type": "string",
          "format": "record-key",
          "description": "The record key (TID) for this note."
        },
        "record": {
          "ref": "systems.timker.hawlt.note",
          "type": "ref",
          "description": "The note record to write."
        }
      }
    },
    "encoding": "application/json"
  },
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "uri",
        "cid"
      ],
      "properties": {
        "cid": {
          "type": "string",
          "format": "cid"
        },
        "uri": {
          "type": "string",
          "format": "at-uri"
        }
      }
    },
    "encoding": "application/json"
  },
  "description": "Write a note record to the repo. Creates a new record at the given rkey."
}

Lexicon Garden

@