https://github.com/realabbas/aws-sns-otp-api
AWS SNS OTP Restful API using Node.js - Express.js
https://github.com/realabbas/aws-sns-otp-api
api aws nodejs otpauth sns sns-notifications
Last synced: about 1 month ago
JSON representation
AWS SNS OTP Restful API using Node.js - Express.js
- Host: GitHub
- URL: https://github.com/realabbas/aws-sns-otp-api
- Owner: realabbas
- License: mit
- Created: 2021-01-16T18:35:11.000Z (over 4 years ago)
- Default Branch: dev
- Last Pushed: 2021-01-16T18:35:38.000Z (over 4 years ago)
- Last Synced: 2025-04-12T20:52:55.287Z (6 months ago)
- Topics: api, aws, nodejs, otpauth, sns, sns-notifications
- Language: JavaScript
- Homepage:
- Size: 42 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AWS-SNS-SMS-OTP API in NodeJS (Express.js)

### API Endpoint
`GET Request to / route` with following paramaters in the GET Request
- message `String`
- number `String`
- subject `String`### Instructions
Send a GET Request from browser,
`http://localhost:3000/?message=[Message]&number=[Number]&subject=[Subject]`
The mobile number should be E.164 format but without the + character.
*Example:*
You want to send a message to a number,
The country code is 44
The mobile number is (0)7700 900123
The E.164 format would be +447700900123
Remove the + character
Then Visit
`http://localhost:3000/?message=my message&number=447700900123&subject=My Subject`