Sending multiple messages to more recipients using HTTP api
In order to send multiple messages to more recipients, the request body must be as follows:
{
"messages": [{
"recipients": [
"+39777444555",
"+39222444888"
],
"quality": "S",
"message": "this message will be sent to two recipients in standard quality",
"uuid": "xxxx-yyyy-zzzz"
}, {
"recipients": [
"+39111222333",
"+39444555666",
"+39777888999"
],
"quality": "H",
"message": "this message will be sent to three recipient in high quality with an alias",
"uuid": "aaaa-bbbb-cccc",
"sender": "123 ABC"
}]
}