# Post Task Conversation

> Perform Post Task Conversation through Bonafide.

Source: [https://genhealth.ai/docs/workflows/integrations/bonafide/bonafide_post_task_conversation](https://genhealth.ai/docs/workflows/integrations/bonafide/bonafide_post_task_conversation)

Integration: [Bonafide](https://genhealth.ai/docs/workflows/integrations/bonafide.md)

- Handler: `bonafide_post_task_conversation`

- Connection type: `bonafide`

## Inputs

- `task_id` — Task Id (expression, required)
  Required literal value or workflow expression.
- `detail` — Detail (textarea, required)
  Required text value.
- `status` — Status (select)
  Optional selected identifier or value.
  Default: `"N"`
  Options: New ("N"), Working ("W"), Revisiting ("R"), Done ("D"), Not Working ("NW"), Not Me ("NM")
- `email_targets` — Email Targets (multi_select)
  Optional list of selected values.
  Options: Me ("M"), All collaborators ("C")
- `last_conversation_id` — Last Conversation Id (text)
  Optional text value.

## Outputs

- `success` — Success
- `task_id` — Task Id
- `status` — Status
- `message` — Message
- `error_message` — Error Message
- `error` — Error

Output schema completeness: `best_effort_declared`

## Safety

- External effect: `write`
- Confirmation recommended: no
- Retry safe: no
- Dry run supported: no

## Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

### Input schema

```json
{
  "type": "object",
  "required": [
    "task_id",
    "detail"
  ],
  "properties": {
    "detail": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "textarea"
    },
    "status": {
      "enum": [
        "N",
        "W",
        "R",
        "D",
        "NW",
        "NM"
      ],
      "type": "string",
      "default": "N",
      "description": "Optional selected identifier or value.",
      "x-workflow-field-type": "select"
    },
    "task_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "email_targets": {
      "type": "array",
      "items": {
        "enum": [
          "M",
          "C"
        ],
        "type": "string"
      },
      "description": "Optional list of selected values.",
      "x-workflow-field-type": "multi_select"
    },
    "last_conversation_id": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "status": {},
    "message": {},
    "success": {},
    "task_id": {},
    "error_message": {}
  },
  "additionalProperties": true
}
```
