Upload New Template
Upload a new PDF Template
HTTP Request
POST https://api.formapi.io/api/v1/templates
You must make a multipart/form-data
form post. The following form params are required:
template[document]
- The PDF file datatemplate[name]
- The name of your new PDF template
Authentication
You must send an Authorization
header with the value Basic
followed by base 64 encoded token_id:token_secret
.
For example: Authorization: Basic dG9rZW5faWQ6dG9rZW5fc2VjcmV0Cg==
See the Authentication documentation for more information.
Example Code
using System;
using System.Diagnostics;
using FormApi.Client.Api;
using FormApi.Client.Client;
using FormApi.Client.Model;
namespace Example
{
public class FormAPIExample
{
public void main()
{
Configuration.Default.Username = "FORMAPI_TOKEN_ID";
Configuration.Default.Password = "FORMAPI_TOKEN_SECRET";
var apiInstance = new PDFApi();
Stream templateDocument = File.OpenRead("path/to/your/document.pdf");
string templateName = "Your Template Name";
var pendingTemplate = instance.CreateTemplate(templateDocument, templateName);
Debug.WriteLine(pendingTemplate.Id);
Debug.WriteLine(pendingTemplate.Name);
}
}
}