The FreeClimb C# SDK will allow you to easily use the FreeClimb API in a C# application.
Test the SDK is working by sending yourself a text message.
using com.freeclimb;
using com.freeclimb.api;
using com.freeclimb.api.message;
...
FreeClimbClient client = new FreeClimbClient("ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", "your_auth_token");
// Numbers must follow the E.164 formatting standard for phone numbers
// An example US number in E.164 would be: +1Area_CodePhoneNumber
// So the US number 202-555-0175 in E.164 formating would be +12025550175
string to = "your_phone_number";
string from = "a_freeclimb_phone_number_in_your_account";
Message message = client.getMessagesRequester.create(from, to, "Hello from C#");When you run this code you should get a text message. This indicates that you've successfully setup your SDK.
The FreeClimb documentation has guides on getting started with FreeClimb, as well as the API reference and PerCL reference.
The C# SDK uses standard XML Documentation Comments.
Docfx consumes these comments and generates a static documentation site.
To build the documentation, install docfx and run docfx docs/docfx.json --serve.
If you are experiencing difficulties, contact our support team at support@freeclimb.com.