Unusual Suite exposes an HTTP REST API that accepts support requests and returns AI-generated responses in JSON format.
When sending attachments, use this JSON structure:
{
"text": "<the ticket text as plain text, markdown text or HTML>",
"attachments": [ // attachments are optional
{ // one or more attachment objects may be provided
"name": "<the attachment name; the file extension is important and must be provided>",
"content": "<the attachment content as plain text or as base64 encoded binary string>"
}
]
}
Unusual Suite returns a JSON object. Some properties are omitted from this example as they are not relevant for most integrations:
{
"text": "<response in markdown format>",
"text-html": "<response in HTML format>"
}