With the PIXELIXE platform
OFFER CUSTOM TEMPLATES TO YOUR USERS (Optional)
You or your designer can create custom reusable templates for your users.
You can easily get and list the full list of your templates with the /api/document/search/v1 API as shown below:
fetch("https://studio.pixelixe.com/api/document/search/v1?created_by=owner&api_key=YOUR_API_KEY")
.then(response => response.json())
.then(data => {
for (i = 0; i < data.documents.length; i++) {
// Name of your graphic
var name = data.documents[i].name;
// Preview (PNG) of your graphic.
var preview = data.documents[i].public_png_url;
// Get the document_uid to pass along this UID to the editor to open this graphic.
var document_uid = data.documents[i].document_uid;
// Open this graphic with your white label editor using the following parameter:
// https://studio.pixelixe.com/#api?apiKey=YOUR_API_KEY&document_uid=document_uid
}
});
Click on one of the template below to start editing