No description available.
Input
Encoding
application/jsoncontent
string
Required
Message text.
maxLength: 5000 bytesinquiryId
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 bytesOutput
Encoding
application/jsonmessage
refapp.bivri.support.defs#messageView
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": [
"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"
}
}