get_template_properties
Retrieve detailed properties and settings of a specific BoldSign template by providing its unique template ID for precise management and configuration.
Instructions
Retrieves the detailed properties and settings of a specific BoldSign template using its unique template ID.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| templateId | Yes | Required. The unique identifier (ID) of the template to retrieve. This can be obtained from the list templates tool. | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "templateId": {
      "description": "Required. The unique identifier (ID) of the template to retrieve. This can be obtained from the list templates tool.",
      "type": "string"
    }
  },
  "required": [
    "templateId"
  ],
  "type": "object"
}