Existing customer? Sign In
Generate this PDF document with a simple API request or via Zapier
Below is the JSON used to create the conference badge above. All the attributes within the data parameter are non-mandatory. Supply only what you want to populate on the document.
{
"template": "conference_badge",
"data": {
"logo": "https://docamatic.s3.eu-west-1.amazonaws.com/assets/logo.png",
"qr": "10257877877",
"first_name": "Casey",
"last_name": "Williams",
"company": "Acme",
"attendee_type": "Speaker",
"color": "#000000"
}
}
It's easy to change the look and feel of the conference badge. The template API allows you to easily insert your own logo and specify a custom font.
{
"template": "conference_badge",
"font": "Open Sans",
"font_size": 0.9,
"font_color": "#32325d",
"data" : {...}
}
By default all templates are generated as a PDF document. If you would like to generate as a PNG or WEBP image, supply the file_type parameter in your API request:
{
"template": "conference_badge",
"file_type": "png",
"data" : {...}
}
Not a developer? No problem! Docamatic's Zapier integration allows you to easily generate conference badges without coding.
If you prefer to build your own templates or require more flexibility, be sure to try our HTML to PDF API . We are using the same HTML to PDF API to generate the conference badge above!
Back to templates