app.bivri.support.createInquiry

lexicons.bivri.app

Documentation

main procedure

No description available.

Input

Encodingapplication/json
category string Required

Subject area of the inquiry. Closed rather than known values: 'other' is the catch-all, and both the appview and the inquiry table already reject anything outside this set.

content string Required

Body of the inquiry.

maxLength: 5000 bytes
email string Required

Address to notify when the inquiry is answered. Bounded at the RFC 5321 maximum; Lexicon has no email string format.

maxLength: 254 bytes
title string Required

Subject line of the inquiry.

maxLength: 200 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": [
        "email",
        "category",
        "title",
        "content"
      ],
      "properties": {
        "email": {
          "type": "string",
          "maxLength": 254,
          "description": "Address to notify when the inquiry is answered. Bounded at the RFC 5321 maximum; Lexicon has no email string format."
        },
        "title": {
          "type": "string",
          "maxLength": 200,
          "description": "Subject line of the inquiry."
        },
        "content": {
          "type": "string",
          "maxLength": 5000,
          "description": "Body of the inquiry."
        },
        "category": {
          "enum": [
            "account",
            "content",
            "payment",
            "other"
          ],
          "type": "string",
          "description": "Subject area of the inquiry. Closed rather than known values: 'other' is the catch-all, and both the appview and the inquiry table already reject anything outside this set."
        }
      }
    },
    "encoding": "application/json"
  },
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "inquiry"
      ],
      "properties": {
        "inquiry": {
          "ref": "app.bivri.support.defs#inquiryView",
          "type": "ref"
        }
      }
    },
    "encoding": "application/json"
  }
}

Lexicon Garden

@