HomeGuidesAPI ReferenceChangelogDiscussions
GuidesAPI ReferenceDiscussions

Discussions

Ask a Question

Download Follow-up stats like System Generated Follow-up Stats as in Reports | System Generated Reports | Follow Ups Usage

How can we download follow-up stats like system generated follow-up stats as in reports | System Generated Reports | Follow Ups Usage? I see where were can get Follow-up Stats in the API but the API seems to allow only one AppID at a time.
ANSWERED

How can I download the OpenAPI Specification for Blend's API?

Does Blend allow customers or partners to download an OpenAPI or Swagger compliant description of their APIs?
ANSWERED

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.

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?

Export FNM3.2 using reference number instead of application uuid

Is there a way to search for applications using reference number?
ANSWERED

Status or Incident portal

Does Blend have an online status page that will indicate whether there are any current issues with your platform? This would help us understand when we have connectivity issues with the site if it is on our end or in the cloud. Thanks!
ANSWERED

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!
ANSWERED

Facebook Tracking No Longer Working

Hey Support Team. We set up Facebook tracking as well as Bing tracking using GTM on Pageview and on other GTM events that blend provides like application_submitted for Blend a month ago but it is no longer working. We are not receiving any events on Facebook and Bing, could you guide me how can we track events of blend application into facebook pixels. Looking forward to your response. Cheers, Anas Marketlytics
ANSWERED

Track Sign-in in blend application

Hey Support Team. I want to track Sign-in in my blend application in google analytics. I didn't find any Sign-in event in blend developers documentation. How can I track sign-in in the blend application and send stats to google analytics? Can we add custom code such as Google Tag Manager code on the sign-in page or is there any alternative to track sign in? Looking forward to your response. Cheers, Anas Marketlytics
ANSWERED

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; } }