@@ -3858,6 +3858,8 @@ public bool CreateTokenizationDictionary(SuccessCallback<TokenDictStatusResponse
3858
3858
CreateTokenizationDictionaryRequestObj req = new CreateTokenizationDictionaryRequestObj ( ) ;
3859
3859
req . SuccessCallback = successCallback ;
3860
3860
req . FailCallback = failCallback ;
3861
+ req . HttpMethod = UnityWebRequest . kHttpVerbPOST ;
3862
+ req . DisableSslVerification = DisableSslVerification ;
3861
3863
req . CustomData = customData == null ? new Dictionary < string , object > ( ) : customData ;
3862
3864
if ( req . CustomData . ContainsKey ( Constants . String . CUSTOM_REQUEST_HEADERS ) )
3863
3865
{
@@ -3962,6 +3964,8 @@ public bool DeleteTokenizationDictionary(SuccessCallback<object> successCallback
3962
3964
DeleteTokenizationDictionaryRequestObj req = new DeleteTokenizationDictionaryRequestObj ( ) ;
3963
3965
req . SuccessCallback = successCallback ;
3964
3966
req . FailCallback = failCallback ;
3967
+ req . HttpMethod = UnityWebRequest . kHttpVerbDELETE ;
3968
+ req . DisableSslVerification = DisableSslVerification ;
3965
3969
req . CustomData = customData == null ? new Dictionary < string , object > ( ) : customData ;
3966
3970
if ( req . CustomData . ContainsKey ( Constants . String . CUSTOM_REQUEST_HEADERS ) )
3967
3971
{
@@ -4037,6 +4041,8 @@ public bool GetTokenizationDictionaryStatus(SuccessCallback<TokenDictStatusRespo
4037
4041
GetTokenizationDictionaryStatusRequestObj req = new GetTokenizationDictionaryStatusRequestObj ( ) ;
4038
4042
req . SuccessCallback = successCallback ;
4039
4043
req . FailCallback = failCallback ;
4044
+ req . HttpMethod = UnityWebRequest . kHttpVerbGET ;
4045
+ req . DisableSslVerification = DisableSslVerification ;
4040
4046
req . CustomData = customData == null ? new Dictionary < string , object > ( ) : customData ;
4041
4047
if ( req . CustomData . ContainsKey ( Constants . String . CUSTOM_REQUEST_HEADERS ) )
4042
4048
{
0 commit comments