Write a Bluemoji record, creating or updating it as needed. Requires auth, implemented by AppView.
Input
Encoding
application/jsonitem
refblue.moji.collection.item#itemView
Required
No description available.
repo
stringat-identifier
Required
The handle or DID of the repo (aka, current account).
validate
boolean
Optional
Can be set to 'false' to skip Lexicon schema validation of record data.
Output
Encoding
application/jsonuri
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": [
"repo",
"item"
],
"properties": {
"item": {
"ref": "blue.moji.collection.item#itemView",
"type": "ref"
},
"repo": {
"type": "string",
"format": "at-identifier",
"description": "The handle or DID of the repo (aka, current account)."
},
"validate": {
"type": "boolean",
"default": true,
"description": "Can be set to 'false' to skip Lexicon schema validation of record data."
}
}
},
"encoding": "application/json"
},
"errors": [],
"output": {
"schema": {
"type": "object",
"required": [
"uri"
],
"properties": {
"uri": {
"type": "string",
"format": "at-uri"
}
}
},
"encoding": "application/json"
},
"description": "Write a Bluemoji record, creating or updating it as needed. Requires auth, implemented by AppView."
}