blue.moji.collection.putItem

moji.blue

Documentation

Write a Bluemoji record, creating or updating it as needed. Requires auth, implemented by AppView.

main procedure

Write a Bluemoji record, creating or updating it as needed. Requires auth, implemented by AppView.

Input

Encodingapplication/json
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

Encodingapplication/json
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": [
        "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."
}

Lexicon Garden

@