Skip to documentation
Bonafide integration

Create Task Outcome

Perform Create Task Outcome through Bonafide.

View as Markdown
bonafide_create_task_outcome
writebonafide

Inputs

  • outcome_name
    textrequired
    Outcome Name

    Required text value.

Outputs

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