HomeGuidesAPI ReferenceChangelogDiscussions
GuidesAPI ReferenceDiscussions

Title Order Events

Events Summary

Title Order events facilitate an automated digital Title process that allows all subscribed consumers to be aware of order creation and updates. These events will allow a consumer to subscribe to when an order has been placed or updated and can use the information provided in the event to retrieve information about the order.

Subscribed consumers will be synced up on the state of the order and can use the information as needed in their workflows.

Ordered

Firing Condition

This event fires when a new title order is placed. The associated Title order ID can be used to call the Title API and retrieve the necessary information at time of order placement.

Fields

The fields object will contain, at minimum:

  1. "application id" - the UUID of the application the title order is associated with
  2. "solutionSubType" - the type of application the party is associated with (e.g., HELOC, MORTGAGE, etc.).
Solution Sub TypeNotes
MORTGAGE
HELOC
HELOAN
ACCOUNT APPLICATION
  1. "integration name" - the name of the title integration system associated with the title order's agency
  2. "integration externalSystemId" - the id associated with the confirmed titled order

Example

{
  "id":"6740d029-d4c5-4032-9f0b-93c2f8ebdae5",
  "firstEmittedAt":"2022-07-06T16:47:11.728Z",
  "lastEmittedAt":"2022-07-06T16:47:11.886Z",
  "attempt":1,
  "status":"EMITTED",
  "data": {
    "type":"titleOrder",
    "action":"created",
    "solution":"CONSUMER_MORTGAGE",
    "id":"f70296d4-0d8b-41a6-8418-fd90f602ab00",
    "fields": {
      "solutionSubType": {
        "value":"MORTGAGE"
      },
      "application": {
        "id":"cec38d65-e25b-4763-8306-8b1cf7b7a50e"
      },
      "integration": {
        "name":"QUALIA",
        "externalSystemId":"jz4S63ttrJBkHMpnx"
      }
    }
  }
}

Order Updated

Firing Condition

This event fires when a title order is updated. The trigger type will specify what order information has been updated. The event is currently only fired when title commitment information is updated. The associated Title order ID can be used to call the Title API and retrieve the updated information.

Trigger TypeNotes
COMMITMENT INFO UPDATEDTriggered when Title Commitment and Curative information is updated and saved in Blend Title.

Fields

The fields object will contain, at minimum:

  1. "application id" - the UUID of the application the title order is associated with
  2. "solutionSubType" - the type of application the party is associated with (e.g., HELOC, MORTGAGE, etc.).

Example

{
  "id":"26c698f7-f003-45b5-b3e5-7f82998b09dd",
  "firstEmittedAt":"2022-07-06T16:48:58.172Z",
  "lastEmittedAt":"2022-07-06T16:48:59.099Z",
  "attempt":1,
  "status":"EMITTED",
  "data": {
    "type":"titleOrder",
    "action":"updated",
    "solution":"CONSUMER_MORTGAGE",
    "id":"f70296d4-0d8b-41a6-8418-fd90f602ab00",
    "fields": {
      "solutionSubType": {
        "value":"MORTGAGE"
      },
      "application": {
        "id":"cec38d65-e25b-4763-8306-8b1cf7b7a50e"
      }
    },
    "trigger": {
      "type":"COMMITMENT_INFO_UPDATED"
    }
  }
}