No description available.
Input
Encoding
application/jsoncategory
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 bytesemail
string
Required
Address to notify when the inquiry is answered. Bounded at the RFC 5321 maximum; Lexicon has no email string format.
maxLength: 254 bytestitle
string
Required
Subject line of the inquiry.
maxLength: 200 bytesOutput
Encoding
application/jsoninquiry
refapp.bivri.support.defs#inquiryView
Required
No description available.
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": [
"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"
}
}