PandaDoc
templates_create
Create a new template from a PDF URL. Provide a secure (HTTPS) publicly accessible URL to the PDF document.
Remote svitlana-omelia/pandadoc
Remote (network-hosted)
Other tools also called templates_create?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "Secure (HTTPS) and publicly accessible URL to the PDF document"
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "The name of the template"
},
"tokens": {
"anyOf": [
{
"type": "array",
"items": {
"type": "object",
"additionalProperties": {
"type": "string"
}
}
},
{
"type": "null"
}
],
"default": null,
"description": "CUSTOM variables as list of {name, value} pairs"
},
"metadata": {
"anyOf": [
{
"type": "object",
"additionalProperties": {
"type": "string"
}
},
{
"type": "null"
}
],
"default": null,
"description": "Arbitrary key-value data to associate with the template"
},
"folder_uuid": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Folder ID where the created template should be stored"
},
"owner_email": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Owner email for the template"
},
"owner_membership_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Owner membership_id for the template"
}
}
}