v1

latestOpenAPI 3.0.02026-07-24226294602.4 KB
Task

Get Task

Get a Task record for the specified Task identifier.

get/communications/tasks/{task_id}

Path parameters

task_idstring required

task id

Headers

x-api-keystring required

A valid api key. If you don't have one, please request one through the Web Integration screen.

Response

task response

task_idstring required

task_id created

task_namestring required

Name of task

task_descriptionstring

Description of the task

due_datestring date

Day this task is due

is_successboolean

True if email was sent with success.

wodify_validation_resultstring

The purpose of this attribute is to save any UserException message, that is, and user friendly message that should be shown to the end user. All methods should have, just like service actions:

Example response

{
  "assignee": {
    "object_type_id": 1234567891234567,
    "id": 1234567891234567
  },
  "associated_people": [
    {
      "object_type_id": 1234567891234567,
      "id": 1234567891234567
    }
  ],
  "followers": [
    {
      "object_type_id": 1234567891234567,
      "id": 1234567891234567
    }
  ],
  "due_date": "2014-12-31",
  "recurrence": {
    "repeat_every_unit_id": 1234567891234567,
    "ends_on_date": "2014-12-31",
    "next_occurrence": "2014-12-31"
  },
  "completed": {
    "object_type_id": 1234567891234567,
    "completed_by_id": 1234567891234567,
    "completed_on_datetime": "2014-12-31T23:59:59.938Z"
  },
  "created": {
    "object_type_id": 1234567891234567,
    "created_by_id": 1234567891234567,
    "created_on_datetime": "2014-12-31T23:59:59.938Z"
  },
  "updated": {
    "object_type_id": 1234567891234567,
    "updated_by_id": 1234567891234567,
    "updated_on_datetime": "2014-12-31T23:59:59.938Z"
  }
}