Discussions
HubSpot CRM Integration
Hello,
I'm looking at Blend as a solution for a banking client of my marketing firm. We are looking into a CRM solution with HubSpot and I'm wondering how we might integrate data between HubSpot and Blend? I've read the articles on CRM integration, but I'm wondering if there are apps to make the integration between the two easier, either provided by HubSpot or Blend? If there aren't integration apps currently available, are apps being planned?
Posted by Tyler over 3 years ago
Open API Specification?
I am looking for an OpenAPi or Swagger specification for the Blend APIs. I can see that you are generating the documentation from a specification, which looks like Swagger.
I am trying to generate classes in .Net from the specification, where I am manually build them for now. But using the specification would allow me to quickly generate them correctly as new versions are released.
Posted by Greg Rothlander over 3 years ago
Does Blend work in Canada?
Hi - I'm curious if the Blend platform is available to Canadian FIs, mortgage lenders, etc. If not, is there an ETA on that?
thanks!
Posted by Martinus Geleynse almost 4 years ago
Error while creating document on a specific loan with a file and related metadata
URL: https://api.beta.blendlabs.com/documents
Error Message: {"trackingId":"76b73d32-5308-4511-b731-591ca155f3d9","error":"Invalid request. Validation error occurred at field value.","display":"Please provide a valid value. (76b73d32-5308-4511-b731-591ca155f3d9)"}
Client Code:
public bool PostDocument(string loanId, string data)
{
//For testing
loanId = "XXXXXXX-7071-4FFC-AFA5-E457XXXXX"; // Blend Loan GUID
data = "";//PDF base 64 data
try
{
string requestParams = $"documents";
var metaData = new metadata
{
loanId = loanId,
type = "other-disclosures"
};
var jsonRequest = JsonConvert.SerializeObject(new PostDocumentRequest
{
metadata = metaData,
data = data
});
client.DefaultRequestHeaders.TryAddWithoutValidation("Content-Type", "multipart/related;");
var response = client.PostAsync(requestParams,
(HttpContent)new StringContent(jsonRequest, Encoding.UTF8, "application/json"));
response.Wait();
HttpResponseMessage res = response.Result;
if (!res.IsSuccessStatusCode)
{
var loanResponse = res.Content.ReadAsStringAsync();
}
return res.IsSuccessStatusCode;
}
catch (Exception ex)
{
throw ex;
}
}
Posted by Sasi over 4 years ago
How to authenticate webhook events
From my understanding, we authenticate incoming webhook events to our listener by validating the base64 username/password that is contained in the header of the request.
What is the name of the header parameter? I do not see any header parameters in the request for this.
Thank you!
Ryan
Posted by Ryan Eardley over 3 years ago
Error from the Get App API
Hoping you gave me some idea of what this error is. We get a 404 if the loan/app is not found. But I am getting this as a 500 error. Seems odd, like this might be an issue on the Blend side, maybe when a first name is blank, or something along that line.
/home-lending/applications/b516aa0c-ff6d-4a4b-a011-73d1b56a90e6
{
"trackingId": "37626189-1730-428c-8ec4-edb5980f9c6b",
"error": "Response validation failed for GET api/external/loans/:id: parties.0.name.firstName fails to match string.base",
"display": "Response validation failed for GET api/external/loans/:id: parties.0.name.firstName fails to match string.base (37626189-1730-428c-8ec4-edb5980f9c6b)"
}
Posted by Jon Rothlander over 3 years ago
Does Blend offers an interface for Spanish speaking end users?
I would like to know if Blend offers an interface for Spanish speaking end users?
Posted by Max Guerra over 1 year ago
IsSuccessful set to false but OK Response ???
So I'm POSTing a home-lending/applications and the response is a 200 OK with the appropriate payload but the IsSuccessful flag is being set to false and the ErrorMessage is set to "Input string was not in a correct format."
No indication of what was not correct and I've even gone so far as to reduce the POST to the bare minimum, firstName, lastName and email.
Posted by John Wicks over 1 year ago
Mobile app questions
Can more than one person be logged in to the same Loan Officer profile on a mobile device?
Also, if my assistant is logged in the mobile app and sends a referral link, does it send my URL as the Loan Officer?
Posted by Emil Izrailov almost 4 years ago
Export FNM3.2 using reference number instead of application uuid
Is there a way to search for applications using reference number?
Posted by praveen almost 4 years ago