curl --request POST \
--url https://api.pictify.io/pdf/render \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"templateUid": "<string>",
"variables": {},
"options": {
"preset": "A4",
"customSize": {
"width": 123,
"height": 123
},
"margins": {
"top": 123,
"bottom": 123,
"left": 123,
"right": 123
},
"title": "<string>"
}
}
'