Get edit task types

GET /data/edits/{edit_id}/task-types

Retrieve all task types that are related to a specific edit.

Path parameters

  • edit_id Required

    Unique identifier of the edit

Responses

  • 200 application/json

    List of edit task types successfully retrieved

    Hide response attributes Show response attributes object
    • id string(uuid)

      Task type unique identifier

    • name string

      Task type name

    • short_name string

      Task type short name

    • color string

      Task type color code

    • for_entity string

      Entity type this task type is for

GET /data/edits/{edit_id}/task-types
curl \
 --request GET 'http://api.example.com/data/edits/a24a6ea4-ce75-4665-a070-57453082c25/task-types' \
 --header "Authorization: $API_KEY"
Response examples (200)
[
  {
    "id": "b35b7fb5-df86-5776-b181-68564193d36",
    "name": "Edit",
    "short_name": "EDT",
    "color": "#FF5733",
    "for_entity": "Edit"
  }
]