When using Tencent Electronic Signature to call the CreateFlowByFiles API, the ComponentName value in the handler content control can be obtained through the following steps:
The CreateFlowByFiles API is used to create an electronic signature flow. The ComponentName is a key parameter that identifies the type of component in the signature process, such as text fields, checkboxes, or signature pads. This value is typically defined in the handler content control when designing the template.
ComponentName to it. This name will be used to identify the component in subsequent API calls.ComponentName values from the template details in the console. These values will be used in the CreateFlowByFiles API call.Assume you have designed a template with the following components:
ApplicantNameAgreementAcceptedWhen calling CreateFlowByFiles, you would reference these ComponentName values in the handler content control to map the data correctly.
{
"templateId": "123456",
"componentValues": [
{
"componentName": "ApplicantName",
"value": "John Doe"
},
{
"componentName": "AgreementAccepted",
"value": "true"
}
]
}
For managing and automating electronic signature processes, consider using Tencent Cloud's Electronic Signature service. This service provides robust APIs and tools to streamline the creation and management of signature flows, ensuring secure and efficient document handling.