Check Closing Statuses

As the closing progresses, it will go through several closing statuses. To help you keep track of these milestones, we provide two ways to see the status of a closing:

  • Asynchronous: Leverage a webhook subscription that listens for the status.changed subscription event. When your closing changes status, you will get a notification from the listener subscribed to the event.
  • Synchronous: Use the Get closing status endpoint that returns the current status of the closing at any time.

The following diagram describes how to create a subscription and receive status updates:

1383

Each Snapdocs closing includes these different status categories:

  • Closing status
  • Document status
  • Documents preview status
  • eSign status
  • Signing appointment status

Closing status

For all closing types, the closing status shows the high-level state of a closing. During most of the closing it will be in_progress.

StatusValueDescription
in_progressClosing is in progress.The closing has been created. The settlement agent is collaborating with the borrower to get all documents signed and notarized.
signing_completeClosing signing has been completed.All documents have been signed and notarized.
closedClosing is closed.The closing is complete and closed.
canceledClosing is canceled.The closing has been canceled.
canceled_for_redrawClosing is canceled due to full redraw.The closing has been canceled due to a full redraw.

Document status

For all closing types, the document status shows the current condition of closing documents.

StatusValueDescription
docs_uploadingDocuments are currently uploading to closing.Snapdocs is waiting for documents to be uploaded.
docs_processingDocuments attached to closing are processing.Snapdocs is processing the uploaded documents.
final_docs_availableFinal documents are available.Documents have been processed by Snapdocs and final documents are available.
awaiting_signaturesDocuments are awaiting signature.The borrowers have not signed all of the documents.
signedDocuments have been signed.All documents have been signed and notarized.
canceledClosing is canceled.The closing has been canceled.

Documents preview status

For all closing types, we offer the borrower a preview of their documents before their signing appointment. This field lets you track where the borrower is in their preview journey.

StatusValueDescription
awaiting_final_docsAwaiting final documents.Awaiting final documents from Document Processing.
ready_for_previewDocuments are ready for preview.Closing documents are fully processed and ready for the borrowers to review.
previewedDocuments have been previewed.All borrowers have reviewed the documents.
canceledClosing is canceled.The closing has been canceled.

eSign Status

In hybrid and full eClosing transactions, the closing has an eSign package. The borrower eSigns this package prior to attending the signing with a signing agent, whether in-person or Remote Online Notarization (RON).

The eSign status tracks the release of the eSign package, and if all borrowers have eSigned.

StatusValueDescription
awaiting_final_docsAwaiting final documents from Document Processing.Awaiting final documents from Document Processing.
awaiting_esign_releaseAwaiting eSign release.The eSign package has not yet been released due to eSign constraints set by the lender.
ready_for_esignClosing is ready for eSign.The eSign package has been sent to the borrowers.
completed_esigneSign is completed.All borrowers have finished eSigning the documents.
canceled_esigneSign is canceled.The eSigning has been canceled due to the closing type changing.
not_applicableStatus is not applicable to this closing.No eSigning is offered on this closing.

Signing appointment status

For all closing types, there is a signing appointment. For hybrid and wet closings, there is an in-person appointment. For full eClosings, there is a Remote Online Notarization (RON) appointment. This status tracks the progress of such appointments and the return of the wet-sign package (if applicable).

StatusValueDescription
awaiting_final_docsAwaiting final documents.Awaiting final documents from Document Processing.
waiting_for_signingWaiting for signing appointment.The signing appointment is upcoming and has not been completed.
completedSigning appointment is completed.The singing appointment has been completed.
canceledClosing is canceled.The signing appointment has been canceled.

How to retrieve the closing_uuid from your LOS id

You can use the Get closing uuid by external identifiers to retrieve the closing_uuid based on the external identifiers you provided when you created the closing.

For example, if your LOS is Encompass, you will send the below data:

[
    {
        "external_system": "encompass",
        "external_type": "loan_guid",
        "value": 1234567
    }
]

Note that the above is an array of objects, so that you can store multiple identifiers as necessary.