Error:The length of the URL for this request exceeds the configured maxUrlLength value in SharePoint 2013 Using Workflow Manger
it can be solved by updating simple change in web.config as below:
<configuration>
<system.web>
<httpRuntime maxRequestLength="51200" requestValidationMode="2.0" maxUrlLength="2000" />
</system.web>
</configuration>