Write a note record to the repo. Creates a new record at the given rkey.
Input
Encoding
application/jsonrecord
refsystems.timker.hawlt.note
Required
The note record to write.
rkey
stringrecord-key
Required
The record key (TID) for this note.
Output
Encoding
application/jsoncid
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.
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."
}