Create Task Category
Perform Create Task Category through Bonafide.
bonafide_create_task_categorywritebonafide
Inputs
- Category Name
category_nametextrequiredRequired text value.
Outputs
successSuccesscategory_idCategory Idcategory_nameCategory NamecreatedCreatedmessageMessageerror_messageError MessageerrorError
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
}