# Create Task Outcome

> Perform Create Task Outcome through Bonafide.

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

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

- Handler: `bonafide_create_task_outcome`

- Connection type: `bonafide`

## Inputs

- `outcome_name` — Outcome Name (text, required)
  Required text value.

## Outputs

- `success` — Success
- `outcome_id` — Outcome Id
- `outcome_name` — Outcome Name
- `created` — Created
- `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": [
    "outcome_name"
  ],
  "properties": {
    "outcome_name": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "created": {},
    "message": {},
    "success": {},
    "outcome_id": {},
    "outcome_name": {},
    "error_message": {}
  },
  "additionalProperties": true
}
```
