The wrapper provides convenient access to the Africa's Talking API from applications written for Node.js.
Take a look at the API docs here.
You can install the package from npm by running:
$ npm install --save africastalkingThe package needs to be configured with your app username and API key, which you can get from the dashboard.
You can use this SDK for either production or sandbox apps. For sandbox, the app username is ALWAYS
sandbox
const credentials = {
apiKey: 'YOUR_API_KEY', // use your sandbox app API key for development in the test environment
username: 'YOUR_USERNAME', // use 'sandbox' for development in the test environment
};
const AfricasTalking = require('africastalking')(credentials);
// Initialize a service e.g. SMS
const sms = AfricasTalking.SMS
// Use the service
const options = {
to: ['+254711XXXYYY', '+254733YYYZZZ'],
message: "I'm a lumberjack and its ok, I work all night and sleep all day"
}
// Send message and capture the response or error
sms.send(options)
.then( response => {
console.log(response);
})
.catch( error => {
console.log(error);
});See example for more usage examples.
Initialize the SDK as a requirement by doing require('africastalking')(options). After initialization, you can get instances of offered services as follows:
-
SMS Service :
AfricasTalking.SMS -
Airtime Service :
AfricasTalking.AIRTIME -
Mobile Data Service :
AfricasTalking.MOBILE_DATA -
Voice Service :
AfricasTalking.VOICE -
USSD : USSD API
-
Token Service :
AfricasTalking.TOKEN -
Insights :
AfricasTalking.INSIGHTS -
WhatsApp :
AfricasTalking.WHATSAPP -
Application Service :
AfricasTalking.APPLICATION
All methods are asynchronous
All phone numbers use the international format. e.g. +234xxxxxxxx.
-
send({ to, senderId, message, enqueue }): Send an SMS to one or more phone numbers -
send([{ to, senderId, message, enqueue }]): Send multiple SMSes to one or more phone numbersto: Recipient(s) phone number. Can either a single phone number or an array of phone numbersREQUIREDsenderId: Shortcode or alphanumeric ID that is registered with Africa's Talking accountmessage: SMS content.REQUIREDenqueue: Set to true if you would like to deliver as many messages to the API without waiting for an acknowledgement from telcos.
-
sendPremium({ to, from, message, enqueue, keyword, linkId, retryDurationInHours }): Send premium SMSkeyword: You premium product keywordlinkId: We forward thelinkIdto your application when the user send a message to your serviceretryDurationInHours: It specifies the number of hours your subscription message should be retried in case it's not delivered to the subscriber
-
fetchMessages({ lastReceivedId }): Manually retrieve your messageslastReceivedId: "This is the id of the message that you last processed". Defaults to0
-
fetchSubscription({ shortCode, keyword, lastReceivedId }): Fetch your premium subscription datashortCode: This is the premium short code mapped to your account.REQUIREDkeyword: A premium keyword under the above short code and mapped to your account.REQUIREDlastReceivedId: "This is the id of the message that you last processed". Defaults to0
-
createSubscription({ shortCode, keyword, phoneNumber }): Create a premium subscriptionshortCode: This is the premium short code mapped to your account.REQUIREDkeyword: A premium keyword under the above short code and mapped to your account.REQUIREDphoneNumber: The phone number to be subscribed.REQUIRED
For more information on:
- SMS service: https://developers.africastalking.com/docs/sms/overview
- How to fetch subscriptions: https://developers.africastalking.com/docs/sms/premium_subscriptions/fetch
- How to listen for subscription notifications: https://developers.africastalking.com/docs/sms/notifications
-
send({ recipients }): Send airtime to a bunch of phone numbers.-
recipients: An array of objects containing the following keys:phoneNumber: Recipient of airtime.REQUIRED.currencyCode: 3-digit ISO format currency code.REQUIRED.amount: Amount to charge.REQUIRED.
-
maxNumRetry: This allows you to specify the maximum number of retries in case of failed airtime deliveries due to various reasons such as telco unavailability. The default retry period is 8 hours and retries occur every 60seconds. For example, settingmaxNumRetry=4means the transaction will be retried every 60seconds for the next 4 hours.OPTIONAL.
-
-
findTransactionStatus(transactionId): Find the status of a given airtime transaction.transactionId: ID of the transaction you would like to find.
For more information, please read https://developers.africastalking.com/docs/airtime/sending
-
send({ productName, recipients })productName: This is the application's product name.recipients: An array of objects containing the following keys:phoneNumber: Recipient of the mobile data.REQUIRED.quantity: a numeric value for the amount of mobile data. It is based on the available mobile data package(see "Bundle Package" column of mobile data pricing).REQUIRED.unit: The units for the specified data quantity, the format is:MBorGB. It is based on the available mobile data package(see "Bundle Package" column of mobile data pricing).REQUIRED.validity: The period of the data bundle’s validity this can beDay,Week,BiWeek,Month, orQuarterly. It is based on the available mobile data package (see "Validity" column of mobile data pricing).REQUIRED.metadata: A JSON object of any metadata that you would like us to associate with the request.REQUIRED.
-
findTransaction({ transactionId }): Find a mobile data transaction -
fetchWalletBalance(): Fetch a mobile data product balance
For more information, please read the https://developers.africastalking.com/docs/data/overview
-
call({ callFrom, callTo }): Initiate a phone callcallFrom: Your Africa's Talking issued virtual phone number.REQUIREDcallTo: Comma-separated string of phone numbers to call.REQUIREDclientRequestId: Additional information that can be used to tag the call in your callback URL.
-
fetchQuedCalls({ phoneNumber }): Get queued callsphoneNumber: Your Africa's Talking issued virtual phone number.REQUIRED
-
uploadMediaFile({ phoneNumber, url }): Upload voice media filephoneNumber: Your Africa's Talking issued virtual phone number.REQUIREDurl: URL to your media file.REQUIRED
Helpers that will construct proper
xmlto send back to Africa's Taking API when it comesPOSTing.
Say,Play,GetDigits,Dial,Record,Enqueue,Dequeue,Conference,Redirect,Reject
Remember to send back an HTTP 200.
For more information, please read https://developers.africastalking.com/docs/voice/overview and issue #15
For more information, please read https://developers.africastalking.com/docs/ussd/overview
generateAuthToken(): Generate an auth token to use for authentication instead of an API key.
checkSimSwapState([phoneNumbers]): Check the sim swap state of a given [set of ] phone number(s).
-
sendMessage({ body, waNumber, phoneNumber }): Send a WhatsApp message to a given number.-
waNumber: The number being used to send the message that is associated with the account.REQUIRED -
phoneNumber: The number that is to receive the message.REQUIRED -
body: The body of message to be sent. It is an object with one of the following fields:-
For simple text message:
message: The text message to be sent to the client.
-
For media messages:
mediaType: The type of media being sent. Can be one ofImage,Video,AudioorVoice.url: The hosted URL of the media being sent.caption: The caption associated with the media being sent.
-
For interactive list:
action: An object with a list of actions.button: Action button titlesection: A list of sectionstitle: A section titlerows: An array of section rows. Each row is an object{ id, title, description }product_items: A list of product items. Each item is an object{ key: value(String) }
body:text: Body text
header:text: Header text
footer:text: Footer text
-
For interactive buttons:
action: An object with a list of actions.buttons: An array of buttons. Each is an object{ id, title }
body:text: Body text
header:text: Header text
-
For template messages:
templateId: Id of template to useheaderValue: Value of the header textbodyValues: List of values to fill in the template
-
-
-
createTemplate({ component, waNumber, name, language, category }): Create a template for your future messages.waNumber: The WhatsApp phone number that will be used to send the messages associated with the template.REQUIREDname: The name of the template. This must be unique.REQUIREDlanguage: The language code(ISO 639-1) associated with the template.REQUIREDcategory: The category associated with the template. Must be one ofMARKETING,UTILITYandAUTHENTICATION.components: An object containing the template values. It can contain the following:-
header: The header of the template to be sent.type: alwaysHEADERformat: One ofLOCATION,TEXT,DOCUMENT,IMAGEandVIDEOtext: The text to be contained in the header. Can be used with variables, e.g 'Hello {{1}}' where{{1}}will be replaced by a value sent.example:header_handle: Text used for replacement when header is of type media(i.e. anything butTEXT)header_text: Text used for replacement when header type isTEXT
-
body: The type of message being sent in the body of the template.type: alwaysBODYtext: The text to be contained in the body. Can be used with variables, e.g 'Hello {{1}} there {{2}}' where{{1}}and{{2}}will be replaced by values sent.example:body_text: A list of texts to use for replacement. e.g.['Juma', 'Champ']
-
footer: The footer of the template to be sent.type: alwaysFOOTERtext: The footer text.
-
buttons:type: alwaysBUTTONSbuttons: A list of buttons to be sent in the template. Each can have the following, depending on the typetype: One ofPHONE_NUMBER,URL,FLOW,COPY_CODEandQUICK_REPLYphone_number: Only needed for phone number typeurl: Only needed for url typetext: Button textexample: An example string(Or list of string for typeURL)flow_id,flow_action(navigate or data_exchange) andnavigate_screenare only needed for typeFLOW
-
fetchApplicationData(): Get app information. e.g. balance
For more information, please read https://developers.africastalking.com/docs/application
Run all tests:
$ pnpm install
$ pnpm testIf you find a bug, please file an issue on our issue tracker on GitHub.
If you want to help improve this library, just send send us a PR!
