https://github.com/freeclimbapi/node-make-recording-how-to-guide
Node - Make Recording Tutorial
https://github.com/freeclimbapi/node-make-recording-how-to-guide
recordings tutorial
Last synced: about 2 months ago
JSON representation
Node - Make Recording Tutorial
- Host: GitHub
- URL: https://github.com/freeclimbapi/node-make-recording-how-to-guide
- Owner: FreeClimbAPI
- Created: 2019-11-14T20:20:10.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-10-18T20:39:06.000Z (over 1 year ago)
- Last Synced: 2025-03-27T05:41:46.544Z (about 1 year ago)
- Topics: recordings, tutorial
- Language: JavaScript
- Homepage:
- Size: 61.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Node - Make Recording How-To Guide
This project serves as a guide to help you build an application with FreeClimb. View this how-to guide on [FreeClimb.com](https://docs.freeclimb.com/docs/make-a-recording#section-nodejs). Specifically, the project will:
- Creates an outgoing call to the `to` number
- Prompts the participant for a recording
- Records a message from the participant
## Setting up your new app within your FreeClimb account
To get started using a FreeClimb account, follow the instructions [here](https://docs.freeclimb.com/docs/getting-started-with-freeclimb).
## Setting up the how-to guide
1. Install the node packages necessary using command:
```bash
$ yarn install
```
2. Configure environment variables (this how-to guide uses the [dotenv package](https://www.npmjs.com/package/dotenv)).
| ENV VARIABLE | DESCRIPTION |
| ----------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| ACCOUNT_ID | Account ID which can be found under [API credentials](https://www.freeclimb.com/dashboard/portal/account/authentication) in Dashboard |
| API_KEY | API key which can be found under [API credentials](https://www.freeclimb.com/dashboard/portal/account/authentication) in Dashboard |
| APPLICATION_ID | Appliction IDs can be found under [Apps](https://www.freeclimb.com/dashboard/portal/applications) |
| HOST | The url of where your app is being hosted (e.g. yourHostedApp.com)
3. Provide a value for the variables `to` and `from` in makeARecording.js. The `to` number is any phone number you wish to call. This number must be [verified](https://docs.freeclimb.com/docs/using-your-trial-account#section-verifying-outbound-numbers) (for trial users) and in E.164 format. `from` is a FreeClimb number that makes the call ([Incoming Numbers](https://www.freeclimb.com/dashboard/portal/numbers)).
## Runnning the how-to guide
1. Run the application using command:
```bash
$ node makeARecording.js
```
## Getting help
If you are experiencing difficulties, [contact support](https://freeclimb.com/support).