# Create Task Category

> Perform Create Task Category through Bonafide.

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

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

- Handler: `bonafide_create_task_category`

- Connection type: `bonafide`

## Inputs

- `category_name` — Category Name (text, required)
  Required text value.

## Outputs

- `success` — Success
- `category_id` — Category Id
- `category_name` — Category 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": [
    "category_name"
  ],
  "properties": {
    "category_name": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
```

### Output schema

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