I'm testing out a DocuSign template I made using their payload helper. I'm able to populate the custom text fields with the following body structure. However, any numeric field is not getting set. I tried including them as textTabs but they're not getting set. Does anyone know the correct format for these fields? There doesn't appear to be a numericTabs option.
"templateRoles": [
{
"tabs": {
"textTabs": [
{"tabLabel": "Address", "value": "5 Main St"},
// Phone not getting set
{"textLabel": "Phone", "value": "1234567891"},
]
},
"roleName": "Customer",
"name": "Customer Name",
"email": "[email protected]"
}
]