{"id":19035696,"url":"https://github.com/freeclimbapi/node-play-recording-how-to-guide","last_synced_at":"2026-01-30T16:53:02.988Z","repository":{"id":44837746,"uuid":"221780389","full_name":"FreeClimbAPI/Node-Play-Recording-How-To-Guide","owner":"FreeClimbAPI","description":"Node - Play Recording Tutorial","archived":false,"fork":false,"pushed_at":"2024-10-18T20:33:30.000Z","size":62,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-13T14:53:03.651Z","etag":null,"topics":["recordings","tutorial"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/FreeClimbAPI.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-11-14T20:23:52.000Z","updated_at":"2024-10-18T20:33:34.000Z","dependencies_parsed_at":"2024-07-11T17:45:17.160Z","dependency_job_id":"ad05b58c-f7af-4155-afd3-1624c20bcf70","html_url":"https://github.com/FreeClimbAPI/Node-Play-Recording-How-To-Guide","commit_stats":null,"previous_names":["freeclimbapi/node-play-recording-how-to-guide"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/FreeClimbAPI/Node-Play-Recording-How-To-Guide","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FreeClimbAPI%2FNode-Play-Recording-How-To-Guide","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FreeClimbAPI%2FNode-Play-Recording-How-To-Guide/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FreeClimbAPI%2FNode-Play-Recording-How-To-Guide/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FreeClimbAPI%2FNode-Play-Recording-How-To-Guide/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/FreeClimbAPI","download_url":"https://codeload.github.com/FreeClimbAPI/Node-Play-Recording-How-To-Guide/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FreeClimbAPI%2FNode-Play-Recording-How-To-Guide/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28915938,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-30T16:37:38.804Z","status":"ssl_error","status_checked_at":"2026-01-30T16:37:37.878Z","response_time":66,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["recordings","tutorial"],"created_at":"2024-11-08T21:51:48.721Z","updated_at":"2026-01-30T16:53:02.965Z","avatar_url":"https://github.com/FreeClimbAPI.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Node - Play Recording How-To Guide\n\nThis 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/play-a-recording#section-nodejs). Specifically, the project will:\n\n- Play a recording to a caller during a call.\n\n## Setting up your new app within your FreeClimb account\n\nTo get started using a FreeClimb account, follow the instructions [here](https://docs.freeclimb.com/docs/getting-started-with-freeclimb).\n\n## Setting up the how-to guide\n\n1. Install the node packages necessary using command:\n\n   ```bash\n   $ yarn install\n   ```\n\n2. Configure environment variables (this how-to guide uses the [dotenv package](https://www.npmjs.com/package/dotenv)).\n\n   | ENV VARIABLE   | DESCRIPTION                                                                                                                           |\n   | -------------- | ------------------------------------------------------------------------------------------------------------------------------------- |\n   | ACCOUNT_ID     | Account ID which can be found under [API credentials](https://www.freeclimb.com/dashboard/portal/account/authentication) in Dashboard |\n   | API_KEY        | API key which can be found under [API credentials](https://www.freeclimb.com/dashboard/portal/account/authentication) in Dashboard    |\n   | APPLICATION_ID | Appliction IDs can be found under [Apps](https://www.freeclimb.com/dashboard/portal/applications)                                     |\n   | HOST           | The url of where your app is beiing hosted (e.g. yourHostedApp.com)                                                                   |\n\n3. Provide a value for the variables `to`, `from`, and `recordingUrl` in playARecording.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)). `recordingUrl` is a url where FreeClimb can download a recording to play. The recording must be [formatted correclty](https://docs.freeclimb.com/reference/interactive-voice-response-ivr#play) to work with FreeClimb. Recordings made by FreeClimb during other calls can be played by using the url provided in the [recordings page](https://www.freeclimb.com/dashboard/portal/recordings).\n\n## Runnning the how-to guide\n\n1. Run the application using command:\n\n   ```bash\n   $ node playARecording.js\n   ```\n\n## Getting help\n\nIf you are experiencing difficulties, [contact support](https://freeclimb.com/support).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffreeclimbapi%2Fnode-play-recording-how-to-guide","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffreeclimbapi%2Fnode-play-recording-how-to-guide","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffreeclimbapi%2Fnode-play-recording-how-to-guide/lists"}