aboutsummaryrefslogtreecommitdiff
path: root/e3372-sendsms.sh
blob: fb13258de875684996b2ef3a4a0898f5737d667e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd)"
. "$DIR/config.sh"

get_token

curl -s -X POST "http://$MODEM_IP/api/sms/send-sms" \
    -H "Cookie: $COOKIE" \
    -H "__RequestVerificationToken: $TOKEN" \
    -H "Content-Type: text/xml" \
    -d "<?xml version='1.0' encoding='UTF-8'?><request><Index>-1</Index><Phones><Phone>363</Phone></Phones><Sca></Sca><Content>USAGE</Content><Length>5</Length><Reserved>1</Reserved><Date>-1</Date></request>" >modem_status.xml

cat modem_status.xml