app.bivri.support.addMessage

lexicons.bivri.app

Documentation

main procedure

No description available.

Input

Encodingapplication/json
content string Required

Message text.

maxLength: 5000 bytes
inquiryId string Required

UUID of the inquiry to append to. Lexicon has no uuid string format, so the hyphenated 36-character length is the strongest bound the schema can carry; the inquiry_id column is what rejects a non-UUID.

maxLength: 36 bytes

Output

Encodingapplication/json
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": [
        "inquiryId",
        "content"
      ],
      "properties": {
        "content": {
          "type": "string",
          "maxLength": 5000,
          "description": "Message text."
        },
        "inquiryId": {
          "type": "string",
          "maxLength": 36,
          "description": "UUID of the inquiry to append to. Lexicon has no uuid string format, so the hyphenated 36-character length is the strongest bound the schema can carry; the inquiry_id column is what rejects a non-UUID."
        }
      }
    },
    "encoding": "application/json"
  },
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "message"
      ],
      "properties": {
        "message": {
          "ref": "app.bivri.support.defs#messageView",
          "type": "ref"
        }
      }
    },
    "encoding": "application/json"
  }
}

Lexicon Garden

@