Hello there,
I have a default installation with (finally) some data synchronized from QB. I can generate links to Edit Customers, Add new customer, etc with no problems.
I see on the top right of the screen a drop-down where I can select "QuickBooks" and from there I can browse Vendors.
However, when I try to generate a link to the "Vendors and Contacts List" page, I get a success message, but the link takes me to the normal default page.
Any ideas on what I may be doing wrong?
Here is the code:
MethodCRMService.ServiceSoapClient client = new MethodCRMService.ServiceSoapClient(binding, endpointAddress);
try
{
client.MethodAPIGetScreenURLV2Completed += (sender, args) =>
{
GetUrlResponse response = BaseResponse.Deserialize<GetUrlResponse>(args.Result);
onGetCreateContactUrlComplete(response);
};
client.MethodAPIGetScreenURLV2Async(credentials.Company, credentials.UserName, credentials.Password, string.Empty,
"Vendors and Contacts List", "Vendors", string.Empty);
}
catch (Exception ex)
{
client.CloseAsync();
LogException(ex);
onGetCreateContactUrlComplete(BaseResponse.GetExceptionResponse<GetUrlResponse>(ex));
}
Thanks for any help,
Jacob