SMS integration using Powershell

You can easily integrate GoFax SMS using Powershell using our RESTful API. 
Sample code: 
 
headers = New-Object "System.Collections.Generic.Dictionary[[String],[String]]"
$headers.Add("Content-Type", "application/json")
$smsRecipient = "04xxxxxxxx"
$smsFrom = "04xxxxxxxx"
$smsReplyTo = "example@email.com.au"
$smsBody = "This is a test message"
$userAccessToken = "11111-11111-11111-11111-111111111"
$gofaxUrl = "https://restful-api.gofax.com.au/v1//SMS/?token=" + $userAccessToken
$body = "{`"To`": [`"$smsRecipient`"],`"From`": `"$smsFrom`",`"ReplyTo`": `"$smsReplyTo`",`"Body`": `"$smsBody`"}"
$response = ""
$response = Invoke-RestMethod $gofaxUrl -Method 'PUT' -Headers $headers -Body $body
$response | ConvertTo-Json
 
>>>  Change the highlighted sections above as required   <<<
 
View full RESTful API or contact us for further assistance.