Custom tabs with duplicate tab label name not gett

2019-05-21 08:06发布

According to: Custom tag in documents uploaded using API, multiple tabs with the same tab label should all be getting filled in with the same value, however, for me, only the first instance is getting that value. I have multiple text tabs with the same tab label, and am creating the envelope with: "text" + "tabLabel" + kvp.Key + "tabLabel" + "value" + kvp.Value + "value" + "text" , yet only the first occurrence of that tab label gets the value. Any suggestions ?

1条回答
Luminary・发光体
2楼-- · 2019-05-21 08:35

In your API request, try prefacing the tabLabel with \\*. For example, if multiple text tabs have the label "address", the portion of the API request to populate those tabs (each with the value '123 Main Street') would look like this:

"tabs":{
    "textTabs":[
       {
          "tabLabel":"\\*address",
          "value":"123 Main Street"
       },
    ],
}
查看更多
登录 后发表回答