I'm using the Azure Service Bus REST API to send a batch of messages to a topic. My namespace is a "Standard" SKU, it means that I have a maximum message size of 256KB.
When using the batch send, it sounds like the limit is per batch (max is 256KB for the batch) and not per message. Nothing is really explained in the documentation, am I right?
And unfortunately, I receive a "Bad Request" error instead of a "Quota exceeded or message too large." error (status 403).
I want to know if I missed something here or if the batch size is also limited to 256KB? And why I didn't receive a 403 error in this case?
Thanks.