Order Supporting Form Status Updated

When the status of an individual supporting form changes

Event name: fundsub.order.supporting_form.status.updated

Note: Within a single supporting-document requirement (a "doc name", e.g. W-9), an investor can add and submit multiple online supporting forms. This event fires on each per-form status transition. It is distinct from fundsub.order.document.uploaded, which fires only when a submission produces an uploaded file and does not report intermediate lifecycle states.

Payload

{
  "event": string,
  "createdAt": string, // example: "2026-08-19T04:20:11.532Z"
  "fundId": string,
  "orderId": string,
  "formSubmissionId": string,
  "formName": string, // example: "W-8BEN"
  "docName": string, // example: "W-8 Form"
  "docGroup": string, // example: "Tax forms"
  "oldStatus": string, // example: "PENDING_SIGNATURE" — nullable
  "newStatus": string, // example: "COMPLETED"
  "submissionMethod": string // example: "FILL_AND_ESIGN" — nullable
}

Payload Fields

FieldTypeDescription
eventstringThe event identifier
createdAtstringTimestamp when the event was sent (ISO 8601 UTC format)
fundIdstringThe unique identifier of the fund
orderIdstringThe unique identifier of the order (the LP id)
formSubmissionIdstringThe unique identifier of the individual mini-form submission that changed
formNamestringThe name of the mini form (e.g. W-8BEN)
docNamestringThe name of the supporting-document requirement the form belongs to (e.g. W-8 Form)
docGroupstringThe group the supporting-document requirement belongs to (e.g. Tax forms)
oldStatusstringThe form's status before the transition. One of NOT_STARTED, IN_PROGRESS, FORM_FILLED, PENDING_SIGNATURE, COMPLETED, null when unspecified (e.g. no previous status).
newStatusstringThe form's status after the transition. One of NOT_STARTED, IN_PROGRESS, FORM_FILLED, PENDING_SIGNATURE, COMPLETED, null when unspecified.
submissionMethodstringHow the form was submitted. One of FILL_AND_ESIGN, FILL_AND_SUBMIT_ONLINE, UPLOAD_OFFLINE, null until the form has been submitted via one of those methods.

Status Values

StatusMeaning
NOT_STARTEDThe form has not been started.
IN_PROGRESSThe LP has started the form and saved some information, but it is not yet complete.
FORM_FILLEDEvery field is complete, but the form has not been submitted.
PENDING_SIGNATUREThe form has been submitted and is waiting on a signer. This state only occurs when a signature is required.
COMPLETEDThe form is fully submitted and finished.

Submission Methods

MethodMeaning
FILL_AND_ESIGNThe LP filled the form online and completed it with an electronic signature.
FILL_AND_SUBMIT_ONLINEThe LP filled and submitted the form online (no signature required).
UPLOAD_OFFLINEThe LP uploaded a completed file rather than filling the form online.

Did this page help you?