Skip to documentation
Bonafide integration

Get Tasks

Perform Get Tasks through Bonafide.

View as Markdown
bonafide_get_tasks
readbonafide

Inputs

  • employee_ids
    text
    Employee Ids

    Optional text value.

  • closing_status
    select
    Closing Status

    Optional selected identifier or value.

    Default: "O"

    Options: Open ("O"), Closed ("C"), All ("")

  • category_id
    text
    Category Id

    Optional text value.

    Default: "-1"

  • outcome_id
    text
    Outcome Id

    Optional text value.

    Default: "-1"

Outputs

  • successSuccess
  • tasksTasks
  • total_countTotal Count
  • employee_idsEmployee Ids
  • messageMessage
  • error_messageError Message
  • errorError

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
}
View all Bonafide actions