Comments for last commit
This commit is contained in:
parent
38a10869c1
commit
4942f24344
4
fax.sh
4
fax.sh
|
@ -22,9 +22,11 @@ then
|
||||||
echo "Encoding failed"
|
echo "Encoding failed"
|
||||||
exit 2
|
exit 2
|
||||||
fi
|
fi
|
||||||
echo '{"faxlineId":"f0", "recipient":"'${REC}'", "filename":"fax.pdf", "base64Content":"'${CONTENT}'"}' > $BASEPATH/.data.txt
|
#save payload to tempfile to prevent curl from throwing 'argument list too long' error.
|
||||||
|
echo '{"faxlineId":"f0", "recipient":"'${REC}'", "filename":"fax.pdf", "base64Content":"'${CONTENT}'"}' > $BASEPATH/.data.txt
|
||||||
#Send fax
|
#Send fax
|
||||||
FAXID=$(curl --request POST --header 'Content-Type: application/json' --header 'Accept: application/json' --header "Authorization: Bearer $AUTH_TOKEN" --data @data.txt "https://api.sipgate.com/v2/sessions/fax" -s | jq '.sessionId' | sed -e 's:"::g' )
|
FAXID=$(curl --request POST --header 'Content-Type: application/json' --header 'Accept: application/json' --header "Authorization: Bearer $AUTH_TOKEN" --data @data.txt "https://api.sipgate.com/v2/sessions/fax" -s | jq '.sessionId' | sed -e 's:"::g' )
|
||||||
|
#remove tempfile
|
||||||
rm $BASEPATH/.data.txt
|
rm $BASEPATH/.data.txt
|
||||||
if [ -z $FAXID ]
|
if [ -z $FAXID ]
|
||||||
then
|
then
|
||||||
|
|
Loading…
Reference in a new issue