Resolutions

Resolution is a result of a finished job. When a job is finished, the assignee is asked to pick one resolution.

Listing resolutions
$ curl -H "Authorization: Bearer api-key" https://api.planadoapp.com/v2/resolutions | jq
{
  "resolutions": [
    {
      "uuid": "f74c80bd-e21c-4d11-a036-84126004088b",
      "name": "Completed",
      "successful": true,
      "has_comment": false,
      "comment_required": false
    },
    {
      "uuid": "3cae7f8b-6a78-428a-8d65-0a18424f3c91",
      "name": "Not completed",
      "successful": false,
      "has_comment": false,
      "comment_required": false
    },
    {
      "uuid": "cb5588ba-b1e7-4d70-99f1-2d7afe01dd2e",
      "name": "Failed with remark",
      "successful": false,
      "has_comment": true,
      "comment_required": true
    }
  ]
}
Table 1. Response fields
Field Type JSON type Can be null Description

uuid

UUID

String

No

Unique identifier

name

String

String

No

Resolution name.
Must be unique, up to 100 characters

successful

Boolean

Boolean

No

has_comment

Boolean

Boolean

No

If true, the assignee can leave a comment
while finishing the job

comment_required

Boolean

Boolean

No

If true, the assignee must leave a comment
while finishing the job.
Can only be true if has_comment is true