Get Tasks
Perform Get Tasks through Bonafide.
bonafide_get_tasksreadbonafide
Inputs
- Employee Ids
employee_idstextOptional text value.
- Closing Status
closing_statusselectOptional selected identifier or value.
Default:
"O"Options: Open ("O"), Closed ("C"), All ("")
- Category Id
category_idtextOptional text value.
Default:
"-1" - Outcome Id
outcome_idtextOptional text value.
Default:
"-1"
Outputs
successSuccesstasksTaskstotal_countTotal Countemployee_idsEmployee IdsmessageMessageerror_messageError MessageerrorError
Output schema completeness: best_effort_declared
Safety
- External effect
- read
- Confirmation recommended
- No
- Retry safe
- Yes
- Dry run supported
- No
Schemas
These schemas are first-pass authoring guidance. Runtime validation remains authoritative.
Input schema
{
"type": "object",
"properties": {
"outcome_id": {
"type": "string",
"default": "-1",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"category_id": {
"type": "string",
"default": "-1",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"employee_ids": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"closing_status": {
"enum": [
"O",
"C",
""
],
"type": "string",
"default": "O",
"description": "Optional selected identifier or value.",
"x-workflow-field-type": "select"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"tasks": {},
"message": {},
"success": {},
"total_count": {},
"employee_ids": {},
"error_message": {}
},
"additionalProperties": true
}