ishant.kesar | Posts: 19 Apex SDK appends _X sometime in the Template Name Tuesday, March 15, 2022 at 10:27pm 0 votes Apex SDK sometime appends _X in the template name March 15 Created March 15 Last Updated 2 years ago Last Reply 1 Replies 15 Views 2 Users 0 Likes 0 Links Duo_Liang | Posts: 3776 Reply to: Apex SDK appends _X sometime in the Template Name Wednesday, March 16, 2022 at 06:20am 0 votes Hi ishant.kesar, This might be caused because there's reserved word in your template name, see the OneSpanJSONHelper.cls > getInboundReplacementMap() method: https://github.com/KadenceCollective/onespan-sign-apex-sdk/blob/master/src/classes/OneSpanJSONHelper.cls "enum","from","group","NEW","PACKAGE", these words will be appended an _X and get removed when built as outbound payload (remove_x() method). Duo Log in or register to post comments
Duo_Liang | Posts: 3776 Reply to: Apex SDK appends _X sometime in the Template Name Wednesday, March 16, 2022 at 06:20am 0 votes Hi ishant.kesar, This might be caused because there's reserved word in your template name, see the OneSpanJSONHelper.cls > getInboundReplacementMap() method: https://github.com/KadenceCollective/onespan-sign-apex-sdk/blob/master/src/classes/OneSpanJSONHelper.cls "enum","from","group","NEW","PACKAGE", these words will be appended an _X and get removed when built as outbound payload (remove_x() method). Duo Log in or register to post comments
Reply to: Apex SDK appends _X sometime in the Template Name
Wednesday, March 16, 2022 at 06:20amHi ishant.kesar,
This might be caused because there's reserved word in your template name, see the OneSpanJSONHelper.cls > getInboundReplacementMap() method:
https://github.com/KadenceCollective/onespan-sign-apex-sdk/blob/master/src/classes/OneSpanJSONHelper.cls
"enum","from","group","NEW","PACKAGE", these words will be appended an _X and get removed when built as outbound payload (remove_x() method).
Duo