Reputation: 2470
I am working with the Docusign REST API in PHP to send a signing documents. Everything is working fine except the font size of the text.
For font size of 32, I have tried something like
"font_size" => "size32", but cannot get it to work.
How do I get the font size to work?
"textTabs" => array(
array(
"tabLabel" => "Name",
"value" => "Nancy Moore",
"font_size" => "size64",
)
),
"numberTabs" => array(
array(
"tabLabel" => "Contact",
"value" => "123456",
"font_size" => "size32",
)
)
Upvotes: 0
Views: 187
Reputation: 2470
For Curl Rest API, the font size parameters differs from that PHP SDK of Docusign (font_size) hence the line of code below solve the issue.
"fontSize": "Size32",
Upvotes: 2