Starter template OLCHA GROUP { SMS } Documentation http://sms.olcha.uz/api/send

Auntification with Basic auth. Login And Password

Required:

{
'message_id' => 'sometimes|string',
'text' => 'required|max:1000',
'phone' => 'required'
}

Example Request:

{
'message_id' => '12533',
'text' => 'Salom',
'phone' => '9989912345678'
}

curl --location --request GET 'http://sms.olcha.uz/api/send/' \
--header 'Authorization: Basic dGVzdDp0ZXN0' \
--header 'Content-Type: application/json' \
--data-raw '{
"message_id": "1225533",
"text": "Salom",
"phone": "9989912345678"
}'