Docusign REST API-PHP并添加TABS

时间:2019-04-23 12:34:25

标签: php rest api docusignapi

我需要使用REST API Docusign添加更多选项卡。我使用他们在此处提供的示例:https://developers.docusign.com/esign-rest-api/code-examples/quickstart-request-signature-email

但是我不知道如何添加更多的TABS,例如姓名缩写?

def repeat(tensor, dims):
    if len(dims) != len(tensor.shape):
        raise ValueError("The length of the second argument must equal the number of dimensions of the first.")
    for index, dim in enumerate(dims):
        repetition_vector = [1]*(len(dims)+1)
        repetition_vector[index+1] = dim
        new_tensor_shape = list(tensor.shape)
        new_tensor_shape[index] *= dim
        tensor = tensor.unsqueeze(index+1).repeat(repetition_vector).reshape(new_tensor_shape)
    return tensor

1 个答案:

答案 0 :(得分:0)

只需将“ SignHere”替换为“ InitialHere”即可,如果需要缩写,其他所有内容都相同。 您可以使用的其他选项卡是FullName,LastName,Date,Text,Number,FormulaTab,CheckBox,RadioGroup和Radio。与本示例相同的只是一个不同的对象。