You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
HI there i have just identified an issue in LocateExistingCard. Your method signature currently has
public virtual int LocateExistingCard(int contactId, int last4)
{
return Invoke(d => d.LocateExistingCard(ApiKey, contactId, last4));
}
But needs to be
public virtual int LocateExistingCard(int contactId, string last4)
{
return Invoke(d => d.LocateExistingCard(ApiKey, contactId, last4));
}
The text was updated successfully, but these errors were encountered:
HI there i have just identified an issue in LocateExistingCard. Your method signature currently has
public virtual int LocateExistingCard(int contactId, int last4)
{
return Invoke(d => d.LocateExistingCard(ApiKey, contactId, last4));
}
But needs to be
public virtual int LocateExistingCard(int contactId, string last4)
{
return Invoke(d => d.LocateExistingCard(ApiKey, contactId, last4));
}
The text was updated successfully, but these errors were encountered: