Link Search Menu Expand Document

C# - Generate Secure URL for Upload

Upload Files sample in Generate Secure URL for Upload demonstrating ‘C#’

GenerateSecureUrlForUpload.cs
using System;
using RestSharp;
namespace HelloWorldApplication {
		class HelloWorld {
				static void Main(string[] args) {
						var client = new RestClient("https://api.pdf.co/v1/file/upload/get-presigned-url?name=test.pdf&encrypt=true");
						client.Timeout = -1;
						var request = new RestRequest(Method.GET);
						request.AddHeader("x-api-key", "{{x-api-key}}");
						request.AlwaysMultipartFormData = true;
						IRestResponse response = client.Execute(request);
						Console.WriteLine(response.Content);
				}
		}
}

PDF.co Web API: the Web API with a set of tools for documents manipulation, data conversion, data extraction, splitting and merging of documents. Includes image recognition, built-in OCR, barcode generation and barcode decoders to decode bar codes from scans, pictures and pdf.

Get your PDF.co API key here!

Download Source Code (.zip)

return to the previous page explore Upload Files endpoint