{
    "$schema": "https://json-schema.org/draft/2020-12/schema",
    "method": "sendInboxConversation",
    "group": "Inbox",
    "summary": "Reply to a conversation by ID",
    "description": "Replies to an existing conversation only; there is no method for starting a new one.\nReturns the literal string `success` - there is no message ID in the response.",
    "deprecated": false,
    "params": {
        "type": "object",
        "properties": {
            "key": {
                "description": "API key",
                "type": "string"
            },
            "ConvID": {
                "$ref": "#/$defs/NumericInput"
            },
            "Body": {
                "type": "string"
            }
        },
        "required": [
            "key",
            "ConvID",
            "Body"
        ],
        "x-order": [
            "key",
            "ConvID",
            "Body"
        ]
    },
    "result": {
        "const": "success"
    },
    "errors": [
        {
            "code": -32001,
            "message": "Invalid API Key"
        },
        {
            "code": -32002,
            "message": "Call Limit Exceeded"
        },
        {
            "code": -32003,
            "message": "User Account Disabled"
        },
        {
            "code": -32004,
            "message": "IP address needs authorization - please check your notices on BTN"
        },
        {
            "code": -32004,
            "message": "Unauthorized IP address"
        },
        {
            "code": 0,
            "message": "ERROR 400"
        },
        {
            "code": 0,
            "message": "Conversation not found."
        },
        {
            "code": 0,
            "message": "Access denied."
        },
        {
            "code": 0,
            "message": "This conversation can not be replied to."
        }
    ],
    "examples": [],
    "x-mutating": "Sends a real message to conversation #{ConvID}.",
    "$defs": {
        "NumericInput": {
            "description": "A whole number, sent either as a JSON number or as a string containing one.\n`5` and `\"5\"` are equivalent, and both are accepted wherever this type appears.",
            "oneOf": [
                {
                    "type": "integer"
                },
                {
                    "type": "string",
                    "pattern": "^-?\\d+(\\.\\d+)?$"
                }
            ]
        }
    }
}
