https://github.com/freeclimbapi/c-sharp-outbound-call-how-to-guide
https://github.com/freeclimbapi/c-sharp-outbound-call-how-to-guide
connecting-calls tutorial
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/freeclimbapi/c-sharp-outbound-call-how-to-guide
- Owner: FreeClimbAPI
- Created: 2020-02-20T19:44:35.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-07-09T19:15:29.000Z (almost 2 years ago)
- Last Synced: 2025-02-21T21:37:29.026Z (over 1 year ago)
- Topics: connecting-calls, tutorial
- Language: C#
- Size: 17.6 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# C# - Make an Outbound Call 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/how-to-make-an-outbound-call#section-c). Specifically, the project will:
- Create an outbound call and control call
## 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 nuget packages necessary using command:
```bash
$ dotnet add package freeclimb-cs-sdk
```
2. Configure environment variables.
| 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 |
3. Provide a value for the variables `to`, `from`, and `appId` in FreeClimbController.cs. 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)). `appId` is the id of the app which you wish to handle the call.
## Runnning the how-to guide
1. Run the application using command:
```bash
$ dotnet run
```
## Getting Help
If you are experiencing difficulties, [contact support](https://freeclimb.com/support).