Отправка SMS пользователю с помощью fast2SMS

I want to send an SMS to the user in the Marathi language but in fast2SMS it is been send in the default language that is English. I have gone through the API Documentation of fast2sms but didn't found the answer to my query. please help how can I send the SMS OTP in marathi .enter image description here

querystring = {
    "authorization":"SqbjiJDXHkYR2An46KOl8ZGexFmdsvWVc0fa3h1PgCIou9NMUTK5XiNwGH7jDVrmP6haAxpSZItyl0f3",
        "sender_id":"KAMALCLS",
        "message":"ur password is " +pw,
        "language":"english",
        "route":"p",
        "numbers":str(ph)
    }
    
    res = requests.request("GET",url,params=querystring)
Вернуться на верх