Sending a file to an API - C#
- by alex
I'm trying to use an API which sends a fax.
I have a PHP example below:
(I will be using C# however)
<?php
//This is example code to send a FAX from the command line using the Simwood API
//It is illustrative only and should not be used without the addition of error checking etc.
$ch = curl_init("http://url-to-api-endpoint");…