Skip to content

Notify_sfr

Chris Caron edited this page Jun 9, 2024 · 2 revisions

Société Française du Radiotéléphone (SFR)

  • Source: https://nexmo.com/
  • Icon Support: No
  • Message Format: Text
  • Message Limit: 160 Characters per message

Account Setup

To use Vonage, you will need to acquire your API Key and API Secret. Both of these are accessible via the Vonage Dashboard.

The {FromPhoneNo} must be a number provided to you through Nexmo

Syntax

Valid syntax is as follows:

  • sfr://{user}:{password}@{space_id}/{PhoneNo}
  • sfr://{user}:{password}@{space_id}/{PhoneNo1}/{PhoneNo2}/{PhoneNoN}

Parameter Breakdown

Variable Required Description
user Yes The user associated with your SFR account.
password Yes The password associated with your SFR account.
space_id Yes The Space ID associated with your SFR account.
PhoneNo *No The phone number you wish to notify

Example

Send a SFR Notification:

# Assuming our {user} is foo
# Assuming our {password} is bar
# Assuming our {space_id} is 1234
# Assuming our {PhoneNo} - is in the US somewhere making our country code +1
#                        - identifies as 800-555-1223
apprise -vv -t "Test Message Title" -b "Test Message Body" \
   sfr://foo:bar@1234/18005551223

# the following would also have worked (spaces, brackets,
# dashes are accepted in a phone no field):
apprise -vv -t "Test Message Title" -b "Test Message Body" \
   sfr://foo:bar@1234//1-(800) 555-1223
Clone this wiki locally