Skip to documentation
Bonafide integration

Create Task Category

Perform Create Task Category through Bonafide.

View as Markdown
bonafide_create_task_category
writebonafide

Inputs

  • category_name
    textrequired
    Category Name

    Required text value.

Outputs

  • successSuccess
  • category_idCategory Id
  • category_nameCategory Name
  • createdCreated
  • messageMessage
  • error_messageError Message
  • errorError

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
{
  "type": "object",
  "required": [
    "category_name"
  ],
  "properties": {
    "category_name": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "created": {},
    "message": {},
    "success": {},
    "category_id": {},
    "category_name": {},
    "error_message": {}
  },
  "additionalProperties": true
}
View all Bonafide actions