I am trying to get the custom fields that I have added to my template to be filled with the values I am sending in the xml request document. I am positive it is an obvious mistake, but I am just not seeing it. I also see this question askd a couple other times without an answer. this is my request. I can sign the document, but non of the non standard fields are filled.
<envelopeDefinition xmlns="http://www.docusign.com/restapi">
<status>sent</status>
<emailSubject>Disclosuresave - Clue Authorization Form</emailSubject>
<templateId>x</templateId>
<templateRoles>
<templateRole>
<email>test@test.test</email>
<name>test name</name>
<roleName>Recipient</roleName>
<clientUserId>####</clientUserId>
<CustomFields>
<CustomField>
<Name>Address</Name>
<Show>True</Show>
<Required>False</Required>
<Value>123 Ash St</Value>
</CustomField>
<CustomField>
<Name>City</Name>
<Show>True</Show>
<Required>False</Required>
<Value>Beverly Hills</Value>
</CustomField>
</CustomFields>
</templateRole>
</templateRoles>
</envelopeDefinition>