file upload in C# with PDF.co Web API
PDF.co Web API is the Rest API that provides set of data extraction functions, tools for documents manipulation, splitting and merging of pdf files. Includes built-in OCR, images recognition, can generate and read barcodes from images, scans and pdf.
On-demand (REST Web API) version:
Web API (on-demand version)
On-premise offline SDK for Windows:
60 Day Free Trial (on-premise)
PutUploadFile.cs
using System; using RestSharp; namespace HelloWorldApplication { class HelloWorld { static void Main(string[] args) { var client = new RestClient("<insert presignedUrl generated by https://api.pdf.co/v1/file/upload/get-presigned-url >"); client.Timeout = -1; var request = new RestRequest(Method.PUT); request.AddHeader("x-api-key", "{{x-api-key}}"); request.AddFile("file", "/Users/em/Downloads/logo.png"); IRestResponse response = client.Execute(request); Console.WriteLine(response.Content); } } }
VIDEO
ON-PREMISE OFFLINE SDK
See also:
ON-DEMAND REST WEB API
Get Your API Key
See also:
printable version:
PDF-co-Web-API-C-sharp-C-sharp.pdf
PDF-co-Web-API-C-sharp-C-sharp.pdf