> ## Documentation Index
> Fetch the complete documentation index at: https://docs.morf.health/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Requested Form Completion

> Event payload details and trigger documentation for Requested Form Completion data from Healthie

<img src="https://mintcdn.com/morfhealth/EU2WCxuXGIUQcziR/images/healthie.svg?fit=max&auto=format&n=EU2WCxuXGIUQcziR&q=85&s=d168a24dbae69f2202ca63dd7aa2e1f3" alt="images/healthie.svg" width="40" height="40" data-path="images/healthie.svg" />

# Events

## Triggering Webhook Types

The following event types are associated with the Requested Form Completion event payload from Healthie.

* `Healthie Requested Form Completion Created`
* `Healthie Requested Form Completion Updated`

<RequestExample>
  ```json Example theme={null}
  {
    "custom_module_form_id": "72028",
    "custom_module_form_name": "Intake Questionnaire",
    "dietician_organization_id": "123450",
    "dietitian_email_address": "drfleming@example.com",
    "dietitian_first_name": "Alexander",
    "dietitian_id": "100070",
    "dietitian_last_name": "Fleming",
    "dietitian_organization_id": "123450",
    "id": "57211",
    "patient_id": "121250"
  }
  ```
</RequestExample>

<ResponseExample>
  ```json Description theme={null}
  {
    "custom_module_form_id": "RequestedFormCompletion's custom module form ID",
    "custom_module_form_name": "RequestedFormCompletion's custom module form name",
    "dietician_organization_id": "Organization ID for the User's (Patient's) registered dietitian",
    "dietitian_email_address": "Email address of the User's (Patient's) registered dietitian",
    "dietitian_first_name": "First name of the User's (Patient's) registered dietitian",
    "dietitian_id": "ID of the User's (Patient's) registered dietitian",
    "dietitian_last_name": "Last name of the User's (Patient's) registered dietitian",
    "dietitian_organization_id": "Organization ID for the User's (Patient's) registered dietitian",
    "id": "RequestedFormCompletion object ID",
    "patient_id": "Patient's ID"
  }
  ```
</ResponseExample>

### Payload Field Details

<ResponseField name="Requested Form Completion" type="Event Payload">
  <Expandable title="fields" defaultOpen="true">
    <ResponseField name="id" type="string" required>
      RequestedFormCompletion object ID

      ```json CEL theme={null}
      id
      ```

      ```json Example theme={null}
      "57211"
      ```
    </ResponseField>

    <ResponseField name="patient_id" type="string" required>
      `ID` Patient's ID

      ```json CEL theme={null}
      patient_id
      ```

      ```json Example theme={null}
      "121250"
      ```
    </ResponseField>

    <ResponseField name="dietician_organization_id" type="string">
      Organization ID for the User's (Patient's) registered dietitian

      ```json CEL theme={null}
      dietician_organization_id
      ```

      ```json Example theme={null}
      "123450"
      ```
    </ResponseField>

    <ResponseField name="dietitian_organization_id" type="string">
      Organization ID for the User's (Patient's) registered dietitian

      ```json CEL theme={null}
      dietitian_organization_id
      ```

      ```json Example theme={null}
      "123450"
      ```
    </ResponseField>

    <ResponseField name="dietitian_first_name" type="string">
      First name of the User's (Patient's) registered dietitian

      ```json CEL theme={null}
      dietitian_first_name
      ```

      ```json Example theme={null}
      "Alexander"
      ```
    </ResponseField>

    <ResponseField name="dietitian_last_name" type="string">
      Last name of the User's (Patient's) registered dietitian

      ```json CEL theme={null}
      dietitian_last_name
      ```

      ```json Example theme={null}
      "Fleming"
      ```
    </ResponseField>

    <ResponseField name="dietitian_email_address" type="string">
      Email address of the User's (Patient's) registered dietitian

      ```json CEL theme={null}
      dietitian_email_address
      ```

      ```json Example theme={null}
      "drfleming@example.com"
      ```
    </ResponseField>

    <ResponseField name="dietitian_id" type="string">
      ID of the User's (Patient's) registered dietitian

      ```json CEL theme={null}
      dietitian_id
      ```

      ```json Example theme={null}
      "100070"
      ```
    </ResponseField>

    <ResponseField name="custom_module_form_id" type="string">
      RequestedFormCompletion's custom module form ID

      ```json CEL theme={null}
      custom_module_form_id
      ```

      ```json Example theme={null}
      "72028"
      ```
    </ResponseField>

    <ResponseField name="custom_module_form_name" type="string">
      RequestedFormCompletion's custom module form name

      ```json CEL theme={null}
      custom_module_form_name
      ```

      ```json Example theme={null}
      "Intake Questionnaire"
      ```
    </ResponseField>
  </Expandable>
</ResponseField>
