Getting a 415 Unsupported Media Type when calling sendMessage with a file attachment on the Android client. The SDK docs list image/png as valid, and the payload is correct, but the server rejects it immediately. Is there a hidden MIME restriction or a specific size cap I’m missing? Here’s the request body:
{
"type": "file",
"content": {
"filename": "screenshot.png",
"mimeType": "image/png",
"data": "<base64>"
}
}