When I use this sdk and call
var apiResponse = new AuthenticationApi().VerifyEmail(token, null, url);
the apiResponse doesn't have any information of the user but when I call it native without this sdk, the response return me the email.
this is the response of the native call in a happy path
{
"IsPosted":true,
"Data":{
"Email":"xxxxxxx@yopmail.com"
}
}
And I need the email to get the profile info
When I use this sdk and call
var apiResponse = new AuthenticationApi().VerifyEmail(token, null, url);
the apiResponse doesn't have any information of the user but when I call it native without this sdk, the response return me the email.
this is the response of the native call in a happy path
{
"IsPosted":true,
"Data":{
"Email":"xxxxxxx@yopmail.com"
}
}
And I need the email to get the profile info