Runrun.it API Documentation

How to authenticate to use the API

Every request to the API should be sent with the correct authentication headers, app_key and user_token:

    curl "https://runrun.it/api/v1.0/users" -X GET \
      -H "App-Key: f9c650c98eeb28e345e0a38a184d20cb" \
      -H "User-Token: roBknmkPI0ALmwkRuC1q"

Whenever you send the incorrect information on app_key or user_token, the response will be 401 Unauthorized. The user_token is unique to each user and allows an agent to act on behalf of that user on Runrun.it. The app_key identifies a whole account, and cannot be changed through the GUI.

How to access your API authentication keys

API access is a premium feature only available to customers of certain paid accounts. To see which plans include API access check here. However developers with ideas for apps taking advantage of Runrun.it are always welcome to contact help@runrun.it about setting up a test account with API access.

  1. Go to Integration and Apps on Runrun.it Integration and Apps
  2. Then look for "API and Webhooks" and click Open Api and Webhooks
  3. Your app_key will be displayed next to the user_token Get application key and user token

Data format

All responses will be valid JSON. Requests should be in JSON as well (although for most actions form-encoded data is accepted as well).

All dates will be in ISO 8601 format. The time zones, if specified, will take into account when doing date operations. Another thing to be mentioned is that you need to urlencode your dates if it does contain special characters like + to specify time zones.

Request limit

There is a maximum limit of 100 requests per minute. If this limit is reached, it will be necessary to wait 1 minute to make new requests. In this case, the response will return the HTTP status code 429 with the following headers:

  • "RateLimit-Limit" → request limit
  • "RateLimit-Remaining" → remaining requests to reach the limit
  • "RateLimit-Reset" → date when the limit will be restored

Excessive use of the API will result in the offending app_key being revoked to ensure the quality of service for other users.

Pagination

Overview

Runrun.it API uses pagination to manage large sets of data efficiently. This section explains the use of headers and query parameters for pagination, along with a practical guide for implementation.

Headers

  • X-Item-Range: Indicates the range of items in the current response. The format is items {first_position}-{last_position}/{total}.
  • Link: Provides hypermedia links for navigation:
    • rel="self": The current page.
    • rel="prev": The previous page (if applicable).
    • rel="next": The next page (if available).
    • rel="last": The last page in the dataset.
  • X-Item-Without-View-Permission (optional): Shows the count of items not viewable due to permissions.

Query Parameters

  • page: Specifies the page number (starts from 1). If out of range, defaults to 1.
  • limit: Limits the number of items per page. The default and maximum limit is 100.
  • offset: Determines the starting point for data retrieval.

Practical Usage

  1. Initial Request: Start with your API call without specific page, limit, or offset.
  2. Analyzing the Response: Check the X-Item-Range and Link headers. The Link header includes navigation links such as self, prev, next, and last.
  3. Navigating Through Pages: Use the URL in the rel="next" link from the Link header for subsequent requests. Continue until this link is absent, indicating the last page.
  4. Optional Parameters: Customize the limit to change the number of items per page and use offset to start from a specific point in the dataset.

Notes

  • Pagination is based on RFC 7233 and RFC 5988.
  • The API ensures efficient data retrieval and navigation through dynamic parameter validation and calculation.
  • Be mindful of rate limits and data usage when making successive API calls.

Examples

First Request

  curl "https://runrun.it/api/v1.0/clients" -X GET \
    -H "App-Key: f9c650c98eeb28e345e0a38a184d20cb" \
    -H "User-Token: roBknmkPI0ALmwkRuC1q" \
    -H "Content-Type: application/json"

Response Headers

  Link: </api/clients>; rel="self", </api/clients?page=2>; rel="next", </api/clients?page=2>; rel="last"
  X-Item-Range: items 1-100/155

Requesting the next page

  curl "https://runrun.it/api/v1.0/clients?page=2" -X GET \
    -H "App-Key: f9c650c98eeb28e345e0a38a184d20cb" \
    -H "User-Token: roBknmkPI0ALmwkRuC1q" \
    -H "Content-Type: application/json"

Webhooks

Manage Webhooks

On the API and Webhooks page, you can manage all webhooks on your account. To create or update a webhook, click on the + button, then select the event you want to listen to and enter the URL that will receive the HTTP POST payload. After creating a webhook, click Save to persist your changes.

Webhook section

To delete a webhook, click on the trash icon button and then "Delete".

Supported events

  • task:create → Triggered when a task is created.
  • task:update → Triggered when the following task attributes are updated: title, tags, desired delivery date, desired start date, points, custom fields.
  • task:destroy → Triggered when a task is deleted.
  • task:deliver → Triggered when a task is delivered, that is, moved from an open stage to a closed stage.
  • task:reopen → Triggered when a task is reopened, that is, when it is moved from a closed step to an open step.
  • task:move → Triggered when a task is moved between stages without changing its state (open/closed).
  • task:add_manual_work_period → Triggered when a user adds hours manually to a task.
  • task:remove_manual_work_period → Triggered when a user removes hours manually to a task.
  • task:change_time_worked → Triggered when the total time worked on a task changes.
  • task:mark_as_urgent → Triggered when a task is marked as urgent.
  • task:unmark_as_urgent → Triggered when a task is unmarked as urgent.
  • task:desired_start_date_upcoming → Triggered when task desired start date is upcoming.
  • task_assignment:play → Triggered when an assignee clicks on the play button.
  • task_assignment:pause → Triggered when an assignee clicks on the pause button.
  • task:change_evaluation_status → Triggered when the task evaluation status changes.
  • task:evaluations:create → Triggered when new evaluation requests are created.
  • task:evaluations:reset → Triggered when existing evaluation requests are requested again.
  • task:evaluations:destroy → Triggered when existing evaluation requests are deleted.
  • task:evaluation:approve → Triggered when an evaluation request is approved.
  • task:evaluation:reject → Triggered when an evaluation request is rejected.
  • task:evaluation:reset → Triggered when an evaluation request is reseted.
  • task:assignments:create → Triggered when new assignees are added to a task.
  • task:description:update → Triggered when task description is updated.
  • task:comment:create → Triggered when a comment on a task is created by a user.
  • task:comment:update → Triggered when a comment on a task is edited by a user.
  • project:create → Triggered when a project is created.
  • project:change_time_worked → Triggered when the total time worked on a project changes.
  • project:comment:create → Triggered when a comment on a project is created by a user.
  • project:comment:update → Triggered when a comment on a project is edited by a user.
  • client:create → Triggered when a client is created.
  • team:comment:create → Triggered when a comment on a team bulletin is created by a user.
  • team:comment:update → Triggered when a comment on a team bulletin is edited by a user.
  • enterprise:comment:create → Triggered when a comment on the enterprise bulletin is created by a user.
  • enterprise:comment:update → Triggered when a comment on the enterprise bulletin is edited by a user.
  • document:comment:create → Triggered when a comment on an attachment is created by a user.
  • document:comment:update → Triggered when a comment on an attachment is edited by a user.

Response

Here are some examples of the HTTP POST payload:

  • task:create
    {
      "event": "task:create",
      "happened_at": "2024-10-08 11:15:32 -0300",
      "performer": { "id": "john-snow", "email": "john.snow@runrun.it" },
      "data": {
        "task": {
          "id": 1696,
          "title": "task 1",
          "board": { "id": 25 },
          "board_stage": { "id": 254 },
          "project": nil,
          "time_worked": 0,
          "evaluation_status": nil,
          "assignees": [],
          "assignments": [],
          "user": { "id": "john-snow", "email": "john.snow@runrun.it" },
          "points": nil,
          "tags_data": [],
          "desired_start_date": nil,
          "desired_date": nil,
          "is_urgent": false,
          "custom_fields": {},
          "url": "http://localhost:3000/pt-BR/tasks/1696"
        }
      }
    }
  • task:update
  {
    "event": "task:update",
    "happened_at": "2024-10-08 11:21:34 -0300",
    "performer": { "id": "john-snow", "email": "john.snow@runrun.it" },
    "data": {
      "task": {
        "id": 1696,
        "title": "task 1",
        "board": { "id": 25 },
        "board_stage": { "id": 254 },
        "project": nil,
        "time_worked": 0,
        "evaluation_status": nil,
        "assignees": [],
        "assignments": [],
        "user": { "id": "john-snow", "email": "john.snow@runrun.it" },
        "points": nil,
        "tags_data": [],
        "desired_start_date": nil,
        "desired_date": nil,
        "is_urgent": false,
        "custom_fields": {},
        "url": "http://localhost:3000/pt-BR/tasks/1696"
      }
    }
  }
  • task:destroy
    {
      "event": "task:destroy",
      "happened_at": "2024-10-08 11:25:24 -0300",
      "performer": { "id": "john-snow", "email": "john.snow@runrun.it" },
      "data": {
        "task": {
          "id": 1696,
          "title": "task 1",
          "board": { "id": 25 },
          "board_stage": { "id": 254 },
          "project": nil,
          "time_worked": 0,
          "evaluation_status": nil,
          "assignees": [],
          "assignments": [],
          "user": { "id": "john-snow", "email": "john.snow@runrun.it" },
          "points": nil,
          "tags_data": [],
          "desired_start_date": nil,
          "desired_date": nil,
          "is_urgent": false,
          "custom_fields": {},
          "url": "http://localhost:3000/pt-BR/tasks/1696"
        }
      }
    }
  • task:deliver
    {
      "event": "task:deliver",
      "happened_at": "2024-10-08 11:28:46 -0300",
      "performer": { "id": "john-snow", "email": "john.snow@runrun.it" },
      "data": {
        "task": {
          "id": 1696,
          "title": "task 1",
          "board": { "id": 25 },
          "board_stage": { "id": 254 },
          "project": nil,
          "time_worked": 246303,
          "evaluation_status": nil,
          "assignees": [
            { "id": "petey-cruiser", "email": "petey.cruiser@runrun.it" }
          ],
          "assignments": [
            {
              "assignee": { "id": "petey-cruiser", "email": "petey.cruiser@runrun.it" }
            }
          ],
          "user": { "id": "anna-mull", "email": "anna.mull@runrun.it" },
          "points": nil,
          "tags_data": [],
          "desired_start_date": nil,
          "desired_date": nil,
          "is_urgent": false,
          "custom_fields": {},
          "url": "http://localhost:3000/pt-BR/tasks/1696"
        }
      }
    }
  • task:reopen
    {
      "event": "task:reopen",
      "happened_at": "2024-10-08 13:52:52 -0300",
      "performer": { "id": "john-snow", "email": "john.snow@runrun.it" },
      "data": {
        "task": {
          "id": 1696,
          "title": "task 1",
          "board": { "id": 25 },
          "board_stage": { "id": 254 },
          "project": nil,
          "time_worked": 246303,
          "evaluation_status": nil,
          "assignees": [
            { "id": "petey-cruiser", "email": "petey.cruiser@runrun.it" }
          ],
          "assignments": [
            {
              "assignee": { "id": "petey-cruiser", "email": "petey.cruiser@runrun.it" }
            }
          ],
          "user": { "id": "anna-mull", "email": "anna.mull@runrun.it" },
          "points": nil,
          "tags_data": [],
          "desired_start_date": nil,
          "desired_date": nil,
          "is_urgent": false,
          "custom_fields": {},
          "url": "http://localhost:3000/pt-BR/tasks/1696"
        }
      }
    }

  • task:move
    {
      "event": "task:move",
      "happened_at": "2024-10-08 14:06:40 -0300",
      "performer": { "id": "john-snow", "email": "john.snow@runrun.it" },
      "data": {
        "task": {
          "id": 1696,
          "title": "task 1",
          "board": { "id": 25 },
          "board_stage": { "id": 254 },
          "project": nil,
          "time_worked": 246303,
          "evaluation_status": nil,
          "assignees": [
            { "id": "petey-cruiser", "email": "petey.cruiser@runrun.it" }
          ],
          "assignments": [
            { 
              "assignee": { "id": "petey-cruiser", "email": "petey.cruiser@runrun.it" }
            }
          ],
          "user": { "id": "anna-mull", "email": "anna.mull@runrun.it" },
          "points": nil,
          "tags_data": [],
          "desired_start_date": nil,
          "desired_date": nil,
          "is_urgent": false,
          "custom_fields": {},
          "url": "http://localhost:3000/pt-BR/tasks/1696"
        }
      }
    }
  • task:add_manual_work_period
    {
      "event": "task:add_manual_work_period",
      "happened_at": "2024-10-08 14:09:20 -0300",
      "performer": { "id": "john-snow", "email": "john.snow@runrun.it" },
      "data": {
        "task": {
          "id": 1696,
          "title": "task 1",
          "board": { "id": 25 },
          "board_stage": { "id": 254 },
          "project": nil,
          "time_worked": 249903,
          "evaluation_status": nil,
          "assignees": [
            { "id": "petey-cruiser", "email": "petey.cruiser@runrun.it" }
          ],
          "assignments": [
            {
              "assignee": { "id": "petey-cruiser", "email": "petey.cruiser@runrun.it" }
            }
          ],
          "user": { "id": "anna-mull", "email": "anna.mull@runrun.it" },
          "points": nil,
          "tags_data": [],
          "desired_start_date": nil,
          "desired_date": nil,
          "is_urgent": false,
          "custom_fields": {},
          "url": "http://localhost:3000/pt-BR/tasks/1696"
        }
      }
    }
  • task:remove_manual_work_period
    {
      "event": "task:remove_manual_work_period",
      "happened_at": "2024-10-08 14:10:43 -0300",
      "performer": { "id": "john-snow", "email": "john.snow@runrun.it" },
      "data": {
        "task": {
          "id": 1696,
          "title": "task 1",
          "board": { "id": 25 },
          "board_stage": { "id": 254 },
          "project": nil,
          "time_worked": 246303,
          "evaluation_status": nil,
          "assignees": [
            { "id": "petey-cruiser", "email": "petey.cruiser@runrun.it" }
          ],
          "assignments": [
            {
              "assignee": { "id": "petey-cruiser", "email": "petey.cruiser@runrun.it" }
            }
          ],
          "user": { "id": "anna-mull", "email": "anna.mull@runrun.it" },
          "points": nil,
          "tags_data": [],
          "desired_start_date": nil,
          "desired_date": nil,
          "is_urgent": false,
          "custom_fields": {},
          "url": "http://localhost:3000/pt-BR/tasks/1696"
        }
      }
    }
  • task:change_time_worked
    {
      "event": "task:change_time_worked",
      "happened_at": "2024-10-08 14:23:44 -0300",
      "performer": nil,
      "data": {
        "task": {
          "id": 1696,
          "title": "task 1",
          "board": { "id": 25 },
          "board_stage": { "id": 254 },
          "project": nil,
          "time_worked": 158,
          "evaluation_status": nil,
          "assignees": [
            { "id": "john-snow", "email": "john.snow@runrun.it" },
            {"id": "ned-stark", "email": "ned.stark@runrun.it"}
          ],
          "assignments": [
            {
              "assignee": { "id": "john-snow", "email": "john.snow@runrun.it" }
            },
            {
              "assignee": {"id": "ned-stark", "email": "ned.stark@runrun.it"}
            }
          ],
          "user": { "id": "anna-mull", "email": "anna.mull@runrun.it" },
          "points": nil,
          "tags_data": [],
          "desired_start_date": "2024-10-08 15:00:00 -0300",
          "desired_date": "2024-10-08 23:59:00 -0300",
          "is_urgent": false,
          "custom_fields": {},
          "url": "http://localhost:3000/pt-BR/tasks/1696"
        }
      }
    }
  • task:mark_as_urgent
    {
      "event": "task:mark_as_urgent",
      "happened_at": "2024-10-08 14:07:40 -0300",
      "performer": { "id": "john-snow", "email": "john.snow@runrun.it" },
      "data": {
        "task": {
          "id": 1696,
          "title": "task 1",
          "board": { "id": 25 },
          "board_stage": { "id": 254 },
          "project": nil,
          "time_worked": 246303,
          "evaluation_status": nil,
          "assignees": [
            { "id": "petey-cruiser", "email": "petey.cruiser@runrun.it" }
          ],
          "assignments": [
            {
              "assignee": { "id": "petey-cruiser", "email": "petey.cruiser@runrun.it" }
            }
          ],
          "user": { "id": "anna-mull", "email": "anna.mull@runrun.it" },
          "points": nil,
          "tags_data": [],
          "desired_start_date": nil,
          "desired_date": nil,
          "is_urgent": true,
          "custom_fields": {},
          "url": "http://localhost:3000/pt-BR/tasks/1696"
        }
      }
    }

  • task:unmark_as_urgent
    {
      "event": "task:unmark_as_urgent",
      "happened_at": "2024-10-08 14:08:23 -0300",
      "performer": { "id": "john-snow", "email": "john.snow@runrun.it" },
      "data": {
        "task": {
          "id": 1696,
          "title": "task 1",
          "board": { "id": 25 },
          "board_stage": { "id": 254 },
          "project": nil,
          "time_worked": 246303,
          "evaluation_status": nil,
          "assignees": [
            { "id": "petey-cruiser", "email": "petey.cruiser@runrun.it" }
          ],
          "assignments": [
            {
              "assignee": { "id": "petey-cruiser", "email": "petey.cruiser@runrun.it" }
            }
          ],
          "user": { "id": "anna-mull", "email": "anna.mull@runrun.it" },
          "points": nil,
          "tags_data": [],
          "desired_start_date": nil,
          "desired_date": nil,
          "is_urgent": false,
          "custom_fields": {},
          "url": "http://localhost:3000/pt-BR/tasks/1696"
        }
      }
    }
  • task:desired_start_date_upcoming
    {
      "event": "task:desired_start_date_upcoming",
      "happened_at": "2024-10-08 14:15:36 -0300",
      "performer": nil,
      "data": {
        "task": {
          "id": 1696,
          "title": "task 1",
          "board": { "id": 25 },
          "board_stage": { "id": 254 },
          "project": nil,
          "time_worked": 246303,
          "evaluation_status": nil,
          "assignees": [
            { "id": "petey-cruiser", "email": "petey.cruiser@runrun.it" }
          ],  
          "assignments": [
            {
              "assignee": { "id": "petey-cruiser", "email": "petey.cruiser@runrun.it" }
            }
          ],
          "user": { "id": "anna-mull", "email": "anna.mull@runrun.it" },
          "points": nil,
          "tags_data": [],
          "desired_start_date": "2024-10-08 15:00:00 -0300",
          "desired_date": "2024-10-08 23:59:00 -0300",
          "is_urgent": false,
          "custom_fields": {},
          "url": "http://localhost:3000/pt-BR/tasks/1696"
        }
      }
    }
  • task_assignment:play
    {
      "event": "task_assignment:play",
      "happened_at": "2024-10-08 14:57:35 -0300",
      "performer": { "id": "john-snow", "email": "john.snow@runrun.it" },
      "data": {
        "task": {
          "id": 1696,
          "title": "task 1",
          "board": { "id": 25 },
          "board_stage": { "id": 254 },
          "project": nil,
          "time_worked": 158,
          "evaluation_status": "pending",
          "assignees": [
            { "id": "john-snow", "email": "john.snow@runrun.it" },
            {"id": "ned-stark", "email": "ned.stark@runrun.it"}
          ],
          "assignments": [
            {
              "assignee": { "id": "john-snow", "email": "john.snow@runrun.it" }
            },
            {
              "assignee": {"id": "ned-stark", "email": "ned.stark@runrun.it"}
            }
          ],
          "user": { "id": "anna-mull", "email": "anna.mull@runrun.it" },
          "points": nil,
          "tags_data": [],
          "desired_start_date": "2024-10-08 15:00:00 -0300",
          "desired_date": "2024-10-08 23:59:00 -0300",
          "is_urgent": false,
          "custom_fields": {},
          "url": "http://localhost:3000/pt-BR/tasks/1696"
        }
      }
    }
  • task_assignment:pause
    {
      "event": "task_assignment:pause",
      "happened_at": "2024-10-08 14:58:12 -0300",
      "performer": { "id": "john-snow", "email": "john.snow@runrun.it" },
      "data": {
        "task": {
          "id": 1696,
          "title": "task 1",
          "board": { "id": 25 },
          "board_stage": { "id": 254 },
          "project": nil,
          "time_worked": 197,
          "evaluation_status": "pending",
          "assignees": [
            { "id": "john-snow", "email": "john.snow@runrun.it" },
            {"id": "ned-stark", "email": "ned.stark@runrun.it"}
          ],
          "assignments": [
            {
              "assignee": { "id": "john-snow", "email": "john.snow@runrun.it" }
            },
            {
              "assignee": {"id": "ned-stark", "email": "ned.stark@runrun.it"}
            }
          ],
          "user": { "id": "anna-mull", "email": "anna.mull@runrun.it" },
          "points": nil,
          "tags_data": [],
          "desired_start_date": "2024-10-08 15:00:00 -0300",
          "desired_date": "2024-10-08 23:59:00 -0300",
          "is_urgent": false,
          "custom_fields": {},
          "url": "http://localhost:3000/pt-BR/tasks/1696"
        }
      }
    }
  • task:change_evaluation_status
    {
      "event": "task:change_evaluation_status",
      "happened_at": "2024-10-08 14:30:52 -0300",
      "performer": nil,
      "data": {
        "task": {
          "id": 1696,
          "title": "task 1",
          "board": { "id": 25 },
          "board_stage": { "id": 254 },
          "project": nil,
          "time_worked": 158,
          "evaluation_status": "approved",
          "assignees": [
            { "id": "john-snow", "email": "john.snow@runrun.it" },
            {"id": "ned-stark", "email": "ned.stark@runrun.it"}
          ],
          "assignments": [
            {
              "assignee": { "id": "john-snow", "email": "john.snow@runrun.it" }
            },
            {
              "assignee": {"id": "ned-stark", "email": "ned.stark@runrun.it"}
            }
          ],
          "user": { "id": "anna-mull", "email": "anna.mull@runrun.it" },
          "points": nil,
          "tags_data": [],
          "desired_start_date": "2024-10-08 15:00:00 -0300",
          "desired_date": "2024-10-08 23:59:00 -0300",
          "is_urgent": false,
          "custom_fields": {},
          "url": "http://localhost:3000/pt-BR/tasks/1696"
        }
      }
    }
  • task:evaluations:create
    {
      "event": "task:evaluations:create",
      "happened_at": "2024-10-08 14:25:03 -0300",
      "performer": { "id": "john-snow", "email": "john.snow@runrun.it" },
      "data": {
        "task": {
          "id": 1696,
          "title": "task 1",
          "board": { "id": 25 },
          "board_stage": { "id": 254 },
          "project": nil,
          "time_worked": 158,
          "evaluation_status": "pending",
          "assignees": [
            { "id": "john-snow", "email": "john.snow@runrun.it" },
            {"id": "ned-stark", "email": "ned.stark@runrun.it"}
          ],
          "assignments": [
            {
              "assignee": { "id": "john-snow", "email": "john.snow@runrun.it" }
            },
            {
              "assignee": {"id": "ned-stark", "email": "ned.stark@runrun.it"}
            }
          ],
          "user": { "id": "anna-mull", "email": "anna.mull@runrun.it" },
          "points": nil,
          "tags_data": [],
          "desired_start_date": "2024-10-08 15:00:00 -0300",
          "desired_date": "2024-10-08 23:59:00 -0300",
          "is_urgent": false,
          "custom_fields": {},
          "url": "http://localhost:3000/pt-BR/tasks/1696"
        },
        "evaluations": [
          {
            "state": "pending",
            "evaluator": {"id": "antonio-carlos-soares", "email": "acsoares@runrun.it"}
          }
        ]
      }
    }
  • task:evaluations:reset
    {
      "event": "task:evaluations:reset",
      "happened_at": "2024-10-08 14:29:21 -0300",
      "performer": { "id": "john-snow", "email": "john.snow@runrun.it" },
      "data": {
        "task": {
          "id": 1696,
          "title": "task 1",
          "board": { "id": 25 },
          "board_stage": { "id": 254 },
          "project": nil,
          "time_worked": 158,
          "evaluation_status": "pending",
          "assignees": [
            { "id": "john-snow", "email": "john.snow@runrun.it" 
            },
            {"id": "ned-stark", "email": "ned.stark@runrun.it"}],
          "assignments": 
            [{"assignee": 
              { "id": "john-snow", "email": "john.snow@runrun.it" }},
            {"assignee": 
              {"id": "ned-stark", "email": "ned.stark@runrun.it"}}],
          "user": { "id": "anna-mull", "email": "anna.mull@runrun.it" },
          "points": nil,
          "tags_data": [],
          "desired_start_date": "2024-10-08 15:00:00 -0300",
          "desired_date": "2024-10-08 23:59:00 -0300",
          "is_urgent": false,
          "custom_fields": {},
          "url": "http://localhost:3000/pt-BR/tasks/1696"},
        "evaluations": 
          [{"state": "pending",
            "evaluator": 
            { "id": "john-snow", "email": "john.snow@runrun.it" }}]}}

  • task:evaluations:destroy
    {
      "event": "task:evaluations:destroy",
      "happened_at": "2024-10-08 14:26:45 -0300",
      "performer": { "id": "john-snow", "email": "john.snow@runrun.it" },
      "data": {
        "task": {
          "id": 1696,
          "title": "task 1",
          "board": { "id": 25 },
          "board_stage": { "id": 254 },
          "project": nil,
          "time_worked": 158,
          "evaluation_status": nil,
          "assignees": [
            { "id": "john-snow", "email": "john.snow@runrun.it" },
            {"id": "ned-stark", "email": "ned.stark@runrun.it"}
          ],
          "assignments": [
            {"assignee": { "id": "john-snow", "email": "john.snow@runrun.it" }},
            {"assignee": {"id": "ned-stark", "email": "ned.stark@runrun.it"}}
          ],
          "user": { "id": "anna-mull", "email": "anna.mull@runrun.it" },
          "points": nil,
          "tags_data": [],
          "desired_start_date": "2024-10-08 15:00:00 -0300",
          "desired_date": "2024-10-08 23:59:00 -0300",
          "is_urgent": false,
          "custom_fields": {},
          "url": "http://localhost:3000/pt-BR/tasks/1696"},
        "evaluations": [
          {
            "state": "pending",
            "evaluator": {"id": "antonio-carlos-soares", "email": "acsoares@runrun.it"}
          }
        ]
      }
    }
  • task:evaluation:approve
    {
      "event": "task:evaluation:approve",
      "happened_at": "2024-10-08 14:28:01 -0300",
      "performer": { "id": "john-snow", "email": "john.snow@runrun.it" },
      "data": {
        "evaluation": {
          "state": "approved",
          "evaluator": { "id": "john-snow", "email": "john.snow@runrun.it" }
        },
        "task": {
          "id": 1696,
          "title": "task 1",
          "board": { "id": 25 },
          "board_stage": { "id": 254 },
          "project": nil,
          "time_worked": 158,
          "evaluation_status": "approved",
          "assignees": [
            { "id": "john-snow", "email": "john.snow@runrun.it" },
            {"id": "ned-stark", "email": "ned.stark@runrun.it"}
          ],
          "assignments": [
            {"assignee": { "id": "john-snow", "email": "john.snow@runrun.it" }},
            {"assignee": {"id": "ned-stark", "email": "ned.stark@runrun.it"}}
          ],
          "user": { "id": "anna-mull", "email": "anna.mull@runrun.it" },
          "points": nil,
          "tags_data": [],
          "desired_start_date": "2024-10-08 15:00:00 -0300",
          "desired_date": "2024-10-08 23:59:00 -0300",
          "is_urgent": false,
          "custom_fields": {},
          "url": "http://localhost:3000/pt-BR/tasks/1696"
        }
      }
    }

  • task:evaluation:reject
    {
      "event": "task:evaluation:reject",
      "happened_at": "2024-10-08 14:43:03 -0300",
      "performer": { "id": "john-snow", "email": "john.snow@runrun.it" },
      "data": {
        "evaluation": {
          "state": "rejected",
          "evaluator": { "id": "john-snow", "email": "john.snow@runrun.it" }
        },
        "task": {
          "id": 1696,
          "title": "task 1",
          "board": { "id": 25 },
          "board_stage": { "id": 254 },
          "project": nil,
          "time_worked": 158,
          "evaluation_status": "rejected",
          "assignees": [
            { "id": "john-snow", "email": "john.snow@runrun.it" },
            {"id": "ned-stark", "email": "ned.stark@runrun.it"}
          ],
          "assignments": [
            {"assignee": { "id": "john-snow", "email": "john.snow@runrun.it" }},
            {"assignee": {"id": "ned-stark", "email": "ned.stark@runrun.it"}}
          ],
          "user": { "id": "anna-mull", "email": "anna.mull@runrun.it" },
          "points": nil,
          "tags_data": [],
          "desired_start_date": "2024-10-08 15:00:00 -0300",
          "desired_date": "2024-10-08 23:59:00 -0300",
          "is_urgent": false,
          "custom_fields": {},
          "url": "http://localhost:3000/pt-BR/tasks/1696"
        }
      }
    }
  • task:evaluation:reset
    {
      "event": "task:evaluation:reset",
      "happened_at": "2024-10-08 14:55:47 -0300",
      "performer": { "id": "john-snow", "email": "john.snow@runrun.it" },
      "data": {
        "evaluation": {
          "state": "pending",
          "evaluator": { "id": "john-snow", "email": "john.snow@runrun.it" }
        },
        "task": {
          "id": 1696,
          "title": "task 1",
          "board": { "id": 25 },
          "board_stage": { "id": 254 },
          "project": nil,
          "time_worked": 158,
          "evaluation_status": "pending",
          "assignees": [
            { "id": "john-snow", "email": "john.snow@runrun.it" },
            {"id": "ned-stark", "email": "ned.stark@runrun.it"}
          ],
          "assignments": [
            {"assignee": { "id": "john-snow", "email": "john.snow@runrun.it" }},
            {"assignee": {"id": "ned-stark", "email": "ned.stark@runrun.it"}}
          ],
          "user": { "id": "anna-mull", "email": "anna.mull@runrun.it" },
          "points": nil,
          "tags_data": [],
          "desired_start_date": "2024-10-08 15:00:00 -0300",
          "desired_date": "2024-10-08 23:59:00 -0300",
          "is_urgent": false,
          "custom_fields": {},
          "url": "http://localhost:3000/pt-BR/tasks/1696"
        }
      }
    }  
  • task:assignments:create
    {
      "event": "task:assignments:create",
      "happened_at": "2024-10-08 14:45:54 -0300",
      "performer": { "id": "john-snow", "email": "john.snow@runrun.it" },
      "data": {
        "task": {
          "id": 1696,
          "title": "task 1",
          "board": { "id": 25 },
          "board_stage": { "id": 254 },
          "project": nil,
          "time_worked": 158,
          "evaluation_status": "pending",
          "assignees": [
            { "id": "john-snow", "email": "john.snow@runrun.it" },
            {"id": "ned-stark", "email": "ned.stark@runrun.it"}
          ],
          "assignments": [
            {"assignee": { "id": "john-snow", "email": "john.snow@runrun.it" }},
            {"assignee": {"id": "ned-stark", "email": "ned.stark@runrun.it"}}
          ],
          "user": { "id": "anna-mull", "email": "anna.mull@runrun.it" },
          "points": nil,
          "tags_data": [],
          "desired_start_date": "2024-10-08 15:00:00 -0300",
          "desired_date": "2024-10-08 23:59:00 -0300",
          "is_urgent": false,
          "custom_fields": {},
          "url": "http://localhost:3000/pt-BR/tasks/1696"},
        "assignments": [
          {"assignee": {"id": "ned-stark", "email": "ned.stark@runrun.it"}}
        ]
      }
    }
  • task:description:update
    {
      "event": "task:description:update",
      "happened_at": "2024-10-08 14:49:06 -0300",
      "performer": { "id": "john-snow", "email": "john.snow@runrun.it" },
      "data": {
        "task": {
          "id": 1696,
          "title": "task 1",
          "board": { "id": 25 },
          "board_stage": { "id": 254 },
          "project": nil,
          "time_worked": 158,
          "evaluation_status": "pending",
          "assignees": [
            { "id": "john-snow", "email": "john.snow@runrun.it" },
            {"id": "ned-stark", "email": "ned.stark@runrun.it"}
          ],
          "assignments": [
            {"assignee": { "id": "john-snow", "email": "john.snow@runrun.it" }},
            {"assignee": {"id": "ned-stark", "email": "ned.stark@runrun.it"}}
          ],
          "user": { "id": "anna-mull", "email": "anna.mull@runrun.it" },
          "points": nil,
          "tags_data": [],
          "desired_start_date": "2024-10-08 15:00:00 -0300",
          "desired_date": "2024-10-08 23:59:00 -0300",
          "is_urgent": false,
          "custom_fields": {},
          "url": "http://localhost:3000/pt-BR/tasks/1696"},
        "description": {"description": "<p>description</p>"}
      }
    }
  • task:comment:create
    {
      "event": "task:comment:create",
      "happened_at": "2024-10-08 14:50:39 -0300",
      "performer": { "id": "john-snow", "email": "john.snow@runrun.it" },
      "data": {
        "comment": {
          "id": 569252855,
          "commentable_type": "Task",
          "commentable": {
            "id": 1696,
            "title": "task 1",
            "board": { "id": 25 },
            "board_stage": { "id": 254 },
            "project": nil,
            "time_worked": 158,
            "evaluation_status": "pending",
            "assignees": [
              { "id": "john-snow", "email": "john.snow@runrun.it" },
              {"id": "ned-stark", "email": "ned.stark@runrun.it"}
            ],
            "assignments": [
              {"assignee": { "id": "john-snow", "email": "john.snow@runrun.it" }},
              {"assignee": {"id": "ned-stark","email": "ned.stark@runrun.it"}}
            ],
            "user": { "id": "anna-mull", "email": "anna.mull@runrun.it" },
            "points": nil,
            "tags_data": [],
            "desired_start_date": "2024-10-08 15:00:00 -0300",
            "desired_date": "2024-10-08 23:59:00 -0300",
            "is_urgent": false,
            "custom_fields": {},
            "url": "http://localhost:3000/pt-BR/tasks/1696"
          },
          "text": "new comment",
          "channel_name": nil,
          "created_at": "2024-10-08 14:50:34 -0300",
          "edited_at": nil,
          "user": { "id": "john-snow", "email": "john.snow@runrun.it" },
          "guest": nil,
          "mentions": {
            "users": [],
            "tasks": []
          }
        }
      }
    }
  • task:comment:update
    {
      "event": "task:comment:update",
      "happened_at": "2024-10-08 14:51:38 -0300",
      "performer": { "id": "john-snow", "email": "john.snow@runrun.it" },
      "data": {
        "comment": {
          "id": 569252855,
          "commentable_type": "Task",
          "commentable": {
            "id": 1696,
            "title": "task 1",
            "board": { "id": 25 },
            "board_stage": { "id": 254 },
            "project": nil,
            "time_worked": 158,
            "evaluation_status": "pending",
            "assignees": [
              { "id": "john-snow", "email": "john.snow@runrun.it" },
              {"id": "ned-stark", "email": "ned.stark@runrun.it"}
            ],
            "assignments": [
              {"assignee": { "id": "john-snow", "email": "john.snow@runrun.it" }},
              {"assignee": {"id": "ned-stark", "email": "ned.stark@runrun.it"}}
            ],
            "user": { "id": "anna-mull", "email": "anna.mull@runrun.it" },
            "points": nil,
            "tags_data": [],
            "desired_start_date": "2024-10-08 15:00:00 -0300",
            "desired_date": "2024-10-08 23:59:00 -0300",
            "is_urgent": false,
            "custom_fields": {},
            "url": "http://localhost:3000/pt-BR/tasks/1696"
          },
          "text": "new comment edited",
          "channel_name": nil,
          "created_at": "2024-10-08 14:50:34 -0300",
          "edited_at": "2024-10-08 14:51:34 -0300",
          "user": { "id": "john-snow", "email": "john.snow@runrun.it" },
          "guest": nil,
          "mentions": {
            "users": [],
            "tasks": []
          }
        }
      }
    }
  • project:create
    {
      "event": "project:create",
      "happened_at": "2024-10-09 08:51:58 -0300",
      "performer": { "id": "john-snow", "email": "john.snow@runrun.it" },
      "data": {
        "project": {
          "id": 985,
          "project_sub_group": { "id": 3846 },
          "project_group": { "id": 6528 },
          "time_worked": 0,
          "client": { "id": 5849 },
          "url": "http://localhost:3000/pt-BR/company/projects/985"
        }
      }
    }
  • project:change_time_worked
    {
      "event": "project:change_time_worked",
      "happened_at": "2024-10-09 08:56:03 -0300",
      "performer": { "id": "john-snow", "email": "john.snow@runrun.it" },
      "data": {
        "project": {
          "id": 985,
          "project_sub_group": { "id": 3846 },
          "project_group": { "id": 6528 },
          "time_worked": 0,
          "client": { "id": 5849 },
          "url": "http://localhost:3000/pt-BR/company/projects/985"
        }
      }
    }
  • project:comment:create
    {
      "event": "project:comment:create",
      "happened_at": "2024-10-09 08:53:04 -0300",
      "performer": { "id": "john-snow", "email": "john.snow@runrun.it" },
      "data": {
        "comment": {
          "id": 8548,
          "commentable_type": "Project",
          "commentable": {
            "id": 985,
            "project_sub_group": { "id": 3846 },
            "project_group": { "id": 6528 },
            "time_worked": 0,
            "client": { "id": 5849 },
            "url": "http://localhost:3000/pt-BR/company/projects/985"
          },
          "text": "New comment",
          "channel_name": nil,
          "created_at": "2024-10-09 08:53:04 -0300",
          "edited_at": nil,
          "user": { "id": "john-snow", "email": "john.snow@runrun.it" },
          "guest": nil,
          "mentions": {
            "users": [],
            "tasks": []
          }
        }
      }
    }
  • project:comment:update
    {
      "event": "project:comment:update",
      "happened_at": "2024-10-09 08:53:54 -0300",
      "performer": { "id": "john-snow", "email": "john.snow@runrun.it" },
      "data": {
        "comment": {
          "id": 8548,
          "commentable_type": "Project",
          "commentable": {
            "id": 985,
            "project_sub_group": { "id": 3846 },
            "project_group": { "id": 6528 },
            "time_worked": 0,
            "client": { "id": 5849 },
            "url": "http://localhost:3000/pt-BR/company/projects/985"
          },
          "text": "New comment edited.",
          "channel_name": nil,
          "created_at": "2024-10-09 08:53:04 -0300",
          "edited_at": "2024-10-09 08:53:54 -0300",
          "user": { "id": "john-snow", "email": "john.snow@runrun.it" },
          "guest": nil,
          "mentions": {
            "users": [],
            "tasks": []
          }
        }
      }
    }
  • client:create
    {
      "event": "client:create",
      "happened_at": "2024-10-09 08:50:38 -0300",
      "performer": { "id": "john-snow", "email": "john.snow@runrun.it" },
      "data": {
        "client": {
          "id": 5849,
          "url": "http://localhost:3000/pt-BR/company/clients/5849"
        }
      }
    }
  • team:comment:create
    {
      "event": "team:comment:create",
      "happened_at": "2024-10-09 08:57:28 -0300",
      "performer": { "id": "john-snow", "email": "john.snow@runrun.it" },
      "data": {
        "comment": {
          "id": 3655,
          "commentable_type": "Team",
          "commentable": { "id": 254, "name": "Team name" },
          "text": "New comment",
          "channel_name": nil,
          "created_at": "2024-10-09 08:57:26 -0300",
          "edited_at": nil,
          "user": { "id": "john-snow", "email": "john.snow@runrun.it" },
          "guest": nil,
          "mentions": {
            "users": [],
            "tasks": []
          }
        }
      }
    }
  • team:comment:update
    {
      "event": "team:comment:update",
      "happened_at": "2024-10-09 08:58:42 -0300",
      "performer": { "id": "john-snow", "email": "john.snow@runrun.it" },
      "data": {
        "comment": {
          "id": 3655,
          "commentable_type": "Team",
          "commentable": { "id": 254, "name": "Team name" },
          "text": "New comment edited",
          "channel_name": nil,
          "created_at": "2024-10-09 08:57:26 -0300",
          "edited_at": "2024-10-09 08:58:40 -0300",
          "user": { "id": "john-snow", "email": "john.snow@runrun.it" },
          "guest": nil,
          "mentions": {
            "users": [],
            "tasks": []
          }
        }
      }
    }
  • enterprise:comment:create
    {
      "event": "enterprise:comment:create",
      "happened_at": "2024-10-09 09:00:55 -0300",
      "performer": { "id": "john-snow", "email": "john.snow@runrun.it" },
      "data": {
        "comment": {
          "id": 25478,
          "commentable_type": "Enterprise",
          "commentable": {"id": "runrun-it", "name": "Runrun.it"},
          "text": "New Comment",
          "channel_name": nil,
          "created_at": "2024-10-09 08:59:19 -0300",
          "edited_at": nil,
          "user": { "id": "john-snow", "email": "john.snow@runrun.it" },
          "guest": nil,
          "mentions": {
            "users": [],
            "tasks": []
          }
        }
      }
    }
  • enterprise:comment:update
    {
      "event": "enterprise:comment:update",
      "happened_at": "2024-10-09 09:03:45 -0300",
      "performer": { "id": "john-snow", "email": "john.snow@runrun.it" },
      "data": {
        "comment": {
          "id": 25478,
          "commentable_type": "Enterprise",
          "commentable": {"id": "runrun-it", "name": "Runrun.it"},
          "text": "New Comment edited",
          "channel_name": nil,
          "created_at": "2024-10-09 08:59:19 -0300",
          "edited_at": "2024-10-09 09:02:15 -0300",
          "user": { "id": "john-snow", "email": "john.snow@runrun.it" },
          "guest": nil,
          "mentions": {
            "users": [],
            "tasks": []
          }
        }
      }
    }
  • document:comment:create
    {
      "event": "document:comment:create",
      "happened_at": "2024-10-09 09:06:23 -0300",
      "performer": { "id": "john-snow", "email": "john.snow@runrun.it" },
      "data": {
        "comment": {
          "id": 25415,
          "commentable_type": "Document",
          "commentable": {"id": 35155, "file_name": "Document.pdf"},
          "text": "Comment text",
          "channel_name": "guest",
          "created_at": "2024-10-09 09:06:20 -0300",
          "edited_at": nil,
          "user": { "id": "john-snow", "email": "john.snow@runrun.it" },
          "guest": nil,
          "mentions": {
            "users": [],
            "tasks": []
          }
        }
      }
    }
  • document:comment:update
    {
      "event": "document:comment:update",
      "happened_at": "2024-10-09 09:09:03 -0300",
      "performer": { "id": "john-snow", "email": "john.snow@runrun.it" },
      "data": {
        "comment": {
          "id": 25415,
          "commentable_type": "Document",
          "commentable": {"id": 35155, "file_name": "Document.pdf"},
          "text": "Comment text",
          "channel_name": "guest",
          "created_at": "2024-10-09 09:06:20 -0300",
          "edited_at": nil,
          "user": { "id": "john-snow", "email": "john.snow@runrun.it" },
          "guest": nil,
          "mentions": {
            "users": [],
            "tasks": []
          }
        }
      }
    }

Contacting API Support

If you have any trouble using the API, you can email us at help@runrun.it.

Board Stages

GET

/api/v1.0/boards/:board_id/stages

List all board stages

GET

/api/v1.0/boards/:board_id/stages/:id

Show a board stage

POST

/api/v1.0/boards/:board_id/stages

Create a board stage

PUT

/api/v1.0/boards/:board_id/stages/:id

Update a board stage

DELETE

/api/v1.0/boards/:board_id/stages/:id

Destroy a board stage

POST

/api/v1.0/boards/:board_id/stages/:id/move

Move a board stage to another group position

POST

/api/v1.0/boards/:board_id/stages/:id/update_use_latency_time

Update to use (or not) latency time

POST

/api/v1.0/boards/:board_id/stages/:id/update_use_scrum_points

Update to use (or not) scrum points

Checklist Items

GET

/api/v1.0/checklists/:checklist_id/items

List checklist items

GET

/api/v1.0/checklists/:checklist_id/items/:id

Show a checklist item

POST

/api/v1.0/checklists/:checklist_id/items

Create a checklist item

PUT

/api/v1.0/checklists/:checklist_id/items/:id

Update a checklist item

DELETE

/api/v1.0/checklists/:checklist_id/items/:id

Destroy a checklist item

Checklists

GET

/api/v1.0/tasks/:task_id/checklist

Show a checklist from a task

POST

/api/v1.0/tasks/:task_id/checklist

Create a checklist from a task

PUT

/api/v1.0/tasks/:task_id/checklist

Update a checklist from a task

DELETE

/api/v1.0/tasks/:task_id/checklist

Destroy a checklist from a task

GET

/api/v1.0/task_templates/:task_template_id/checklist

Show a checklist from a task template

POST

/api/v1.0/task_templates/:task_template_id/checklist

Create a checklist from a task template

PUT

/api/v1.0/task_templates/:task_template_id/checklist

Update a checklist from a task template

DELETE

/api/v1.0/task_templates/:task_template_id/checklist

Destroy a checklist from a task template

Clients

GET

/api/v1.0/clients

List clients

GET

/api/v1.0/clients/:id

Show a client

POST

/api/v1.0/clients

Create a client

PUT

/api/v1.0/clients/:id

Update a client

GET

/api/v1.0/clients/:client_id/monthly_budgets

List all budgets

POST

/api/v1.0/clients/:client_id/update_monthly_budget

when a budget not exists, creates a new budget

Comments

GET

/api/v1.0/tasks/:task_id/comments

List comments on a task

GET

/api/v1.0/comments/:id

Show a specific comment

POST

/api/v1.0/comments

Create a new comment

POST

/api/v1.0/comments

Create a new comment

POST

/api/v1.0/comments

Create a new project comment

PUT

/api/v1.0/comments/:id

Update a comment

DELETE

/api/v1.0/comments/:id

Destroy a comment

POST

/api/v1.0/comments/:id/reaction

Reaction to a comment

Dashboard::Widgets

GET

/api/v1.0/dashboards/:dashboard_id/widgets

List all widgets for a board dashboard

GET

/api/v1.0/widgets/:id

List a choosen widget for a board dashboard

POST

/api/v1.0/dashboards/:dashboard_id/widgets

Create a widget

PUT

/api/v1.0/widgets/:id

Update a widget for a board dashboard

DELETE

/api/v1.0/widgets/:id

Destroy a widget

POST

/api/v1.0/dashboards/:dashboard_id/widgets/reorder

Reorder all widgets for the selected dashboard

GET

/api/v1.0/dashboards/:dashboard_id/widgets/form_setup

List all available vertical options for a board dashboard

GET

/api/v1.0/dashboards/:dashboard_id/widgets/form_setup

Add fields of boards when type is numeric or rating

GET

/api/v1.0/dashboards/:dashboard_id/widgets/templates

List all available templates for a board dashboard

POST

/api/v1.0/widgets/:id/export

Export widget data

GET

/api/v1.0/widgets/:id/tasks

Gets processed data for a widget with source tasks

GET

/api/v1.0/widgets/:id/tasks

Lists tasks for drilldown when expand is passed

DashboardWidgets

GET

/api/v1.0/dashboards/:dashboard_id/dashboard_widgets

List all widgets for the current dashboard

GET

/api/v1.0/dashboard_widgets/:id

List a choosen widget for the current dashboard

GET

/api/v1.0/dashboard_widgets/:id

List a choosen widget for the current dashboard with the report's url

POST

/api/v1.0/dashboards/:dashboard_id/dashboard_widgets

Create a widget

PUT

/api/v1.0/dashboard_widgets/:id

Update a dashboard

DELETE

/api/v1.0/dashboard_widgets/:id

Destroy a widget

PUT

/api/v1.0/dashboards/:dashboard_id/dashboard_widgets/reorder

Reorder all widgets for the selected dashboard

Dashboards

GET

/api/v1.0/dashboards

List all dashboards for the current_user

GET

/api/v1.0/dashboards/:id

List a choosen dashboard for the current_user

POST

/api/v1.0/dashboards

Create a dashboard

PUT

/api/v1.0/dashboards/:id

Update a dashboard

DELETE

/api/v1.0/dashboards/:id

Destroy a dashboard

Demanders

GET

/api/v1.0/users/:user_id/demanders

List all demanders of user

POST

/api/v1.0/users/:user_id/demanders

Adds a demander to a user

POST

/api/v1.0/users/:user_id/demanders/replace

Replace a user partners list

DELETE

/api/v1.0/users/:user_id/demanders/:id

Destroy a demander of a user

Descendants

GET

/api/v1.0/tasks/:task_id/descendants

List all task descendants from a task

POST

/api/v1.0/tasks/:task_id/descendants

Add a descendant task to a task

DELETE

/api/v1.0/tasks/:task_id/descendants/:id

Remove a descendant task from a task

Description

GET

/api/v1.0/descriptions

Query Multiple Descriptions

GET

/api/v1.0/descriptions

Query Single Project Description

GET

/api/v1.0/descriptions

Query Single Task Template Description

PUT

/api/v1.0/descriptions

Update Project Description

PUT

/api/v1.0/descriptions

Update Task Template Description

Documents

GET

/api/v1.0/tasks/:task_id/documents

List all documents uploaded to a task

GET

/api/v1.0/documents/:id

Show a document

GET

/api/v1.0/documents/:id/download

Download a document

GET

/api/v1.0/documents/:id/thumbnail

Download a document thumbnail

GET

/api/v1.0/documents/:id/preview

Download a document preview

POST

/api/v1.0/tasks/:task_id/documents

Create a document

DELETE

/api/v1.0/documents/:id

Destroy a document

GET

/api/v1.0/documents/download_zip

Download multiple documents as zip

Enterprises

GET

/api/v1.0/enterprises/:id

Show details for requesting user's enterprise

PUT

/api/v1.0/enterprises/:id

Update enterprise

Estimates

GET

/api/v1.0/tasks/:task_id/estimates

Show all the estimatives for a task.

POST

/api/v1.0/tasks/:task_id/estimates

Create a estimative for a task.

EventNotification

GET

/api/v1.0/users/:user_id/event_notifications

List all user's event notifications

POST

/api/v1.0/users/:user_id/event_notifications/:id/mark_as_read

Assign readed_in on event_notification

POST

/api/v1.0/users/:user_id/event_notifications/mark_all_as_read

Assigns all user's event notifications

DELETE

/api/v1.0/users/:user_id/event_notifications/:id

Delete a event_notification

POST

/api/v1.0/users/:user_id/event_notifications/destroy_all

Delete all event_notifications

Filters

GET

/api/v1.0/projects/filters

List all projects filters

GET

/api/v1.0/projects/filters/:id

Show a project filter

DELETE

/api/v1.0/projects/filters/:id

Destroy a project filter

GET

/api/v1.0/tasks/filters

List all tasks filters

GET

/api/v1.0/tasks/filters/:id

Show a task filter

DELETE

/api/v1.0/tasks/filters/:id

Destroy a task filter

Justifications

POST

/api/v1.0/justifications

Create an arbitrary Justification

POST

/api/v1.0/justifications

Create an arbitrary Justification for a task

PUT

/api/v1.0/justifications/:justification_id

Update the text of a justification

Justifications

POST

/api/v1.0/justifications

Create an arbitrary Justification

POST

/api/v1.0/justifications

Create an arbitrary Justification for a task

PUT

/api/v1.0/justifications/:justification_id

Update the text of a justification

Manual Work Periods

GET

/api/v1.0/manual_work_periods

List all manual work periods

GET

/api/v1.0/manual_work_periods/:id

Show a Manual Work Period

POST

/api/v1.0/manual_work_periods

Create a Manual Work Period

PUT

/api/v1.0/manual_work_periods/:id

Update a Manual Work Period

DELETE

/api/v1.0/manual_work_periods/:id

Destroy a Manual Work Period

OffDays

GET

/api/v1.0/off_days

List all off days

GET

/api/v1.0/off_days/:id

Show an off day

POST

/api/v1.0/off_days

Create an off day

PUT

/api/v1.0/off_days/:id

Update an off day

DELETE

/api/v1.0/off_days/:id

Destroy an off day

Partners

GET

/api/v1.0/users/:user_id/partners

List all partners of user

POST

/api/v1.0/users/:user_id/partners

Adds a partner to a user

POST

/api/v1.0/users/:user_id/partners/replace

Replace a user partners list

DELETE

/api/v1.0/users/:user_id/partners/:id

Destroy a partner of a user

Prerequisites

GET

/api/v1.0/tasks/:task_id/prerequisites

List all task prerequisites from a task

POST

/api/v1.0/tasks/:task_id/prerequisites

Add a task prerequisite to a task

DELETE

/api/v1.0/tasks/:task_id/prerequisites/:id

Remove a task prerequisite from a task

GET

/api/v1.0/task_templates/:task_template_id/prerequisites

List all task template prerequisites from a task template

POST

/api/v1.0/task_templates/:task_template_id/prerequisites

Add a task template prerequisite to a task template

DELETE

/api/v1.0/task_templates/:task_template_id/prerequisites/:id

Remove a task template prerequisite from a task template

Project Description

PUT

/api/v1.0/projects/:project_id/description

Update the project description

Project Description

PUT

/api/v1.0/projects/:project_id/description

Update the project description

Project Groups

GET

/api/v1.0/clients/:client_id/project_groups

List all Project Groups

GET

/api/v1.0/clients/:client_id/project_groups/:id

Show a Project Group

POST

/api/v1.0/clients/:client_id/project_groups

Create a Project Group

PUT

/api/v1.0/clients/:client_id/project_groups/:id

Update a Project Group

DELETE

/api/v1.0/clients/:client_id/project_groups/:id

Destroy a Project Group

POST

/api/v1.0/project_groups/:id/move

Move project group to another client

Project Groups

GET

/api/v1.0/clients/:client_id/project_groups

List all Project Groups

GET

/api/v1.0/clients/:client_id/project_groups/:id

Show a Project Group

POST

/api/v1.0/clients/:client_id/project_groups

Create a Project Group

PUT

/api/v1.0/clients/:client_id/project_groups/:id

Update a Project Group

DELETE

/api/v1.0/clients/:client_id/project_groups/:id

Destroy a Project Group

POST

/api/v1.0/project_groups/:id/move

Move project group to another client

Project Sub Groups

GET

/api/v1.0/project_groups/:project_group_id/project_sub_groups

List all Project Sub Groups using Project Group id

GET

/api/v1.0/clients/:client_id/project_sub_groups

List all Project Sub Groups using Client id

GET

/api/v1.0/project_groups/:project_group_id/project_sub_groups/:id

Show a Project Sub Group

POST

/api/v1.0/project_groups/:project_group_id/project_sub_groups

Create a Project Sub Group

PUT

/api/v1.0/project_groups/:project_group_id/project_sub_groups/:id

Update a Project Sub Group

DELETE

/api/v1.0/project_groups/:project_group_id/project_sub_groups/:id

Destroy a Project Sub Group

POST

/api/v1.0/project_sub_groups/:id/move

Move project sub group to another project group

Project Templates

GET

/api/v1.0/project_templates

List all Project Templates

GET

/api/v1.0/project_templates/:id

Show a Project Template

POST

/api/v1.0/project_templates/

Create a Project Template

PUT

/api/v1.0/project_templates/:id

Update a Project Template

DELETE

/api/v1.0/project_templates/:id

Destroy a Project Template

ProjectExtraCost

GET

/api/v1.0/projects/:project_id/extra_costs

List all extra costs of a project

GET

/api/v1.0/projects/:project_id/extra_costs/:id

Show a extra cost of a project

POST

/api/v1.0/projects/:project_id/extra_costs

Create a new Project Extra Cost

ProjectExtraCost

GET

/api/v1.0/projects/:project_id/extra_costs

List all extra costs of a project

GET

/api/v1.0/projects/:project_id/extra_costs/:id

Show a extra cost of a project

POST

/api/v1.0/projects/:project_id/extra_costs

Create a new Project Extra Cost

Projects

GET

/api/v1.0/projects

List all projects

GET

/api/v1.0/projects/:id

Show a Project

POST

/api/v1.0/projects/

Create a Project

POST

/api/v1.0/projects/:id/move

Move project to another client

POST

/api/v1.0/projects/:id/move

Move project to another project group

POST

/api/v1.0/projects/:id/move

Move project to another project sub group

POST

/api/v1.0/projects/:id/share

Share the project

POST

/api/v1.0/projects/:id/unshare

Unshare the project

POST

/api/v1.0/projects/:id/clone

Clone a Project

POST

/api/v1.0/projects/:id/change_board_stage

Change a project board stage

Tags

GET

/api/v1.0/tags

Query tags

Task Description

GET

/api/v1.0/tasks/:task_id/description

Show the task description

PUT

/api/v1.0/tasks/:task_id/description

Update the task description

Task Evaluations

GET

/api/v1.0/task_evaluations

List all task evaluations when no params are passed

GET

/api/v1.0/task_evaluations

List all task evaluations for a specific task

GET

/api/v1.0/task_evaluations

List all task evaluations for a specific evaluator

POST

/api/v1.0/task_evaluations/:id/reset

Reset a task evaluation

DELETE

/api/v1.0/task_evaluations/:id

Destroy a task evaluation

POST

/api/v1.0/tasks/:task_id/evaluations

Updates the task evaluations

DELETE

/api/v1.0/tasks/:task_id/evaluations

Destroy all evaluations for this task

Task Followers

GET

/api/v1.0/tasks/:task_id/followers

List all followers

POST

/api/v1.0/tasks/:task_id/followers

Create a Task Follower

DELETE

/api/v1.0/tasks/:task_id/followers/:id

Remove a Task Follower

Task Followers

GET

/api/v1.0/tasks/:task_id/followers

List all followers

POST

/api/v1.0/tasks/:task_id/followers

Create a Task Follower

DELETE

/api/v1.0/tasks/:task_id/followers/:id

Remove a Task Follower

Task Templates

GET

/api/v1.0/project_templates/:project_template_id/task_templates

List all Task Templates of this Project Template

GET

/api/v1.0/project_templates/:project_template_id/task_templates/:id

Show a Task Template

POST

/api/v1.0/project_templates/:project_template_id/task_templates

Create a Task Template

PUT

/api/v1.0/project_templates/:project_template_id/task_templates/:id

Update a Task Template

DELETE

/api/v1.0/project_templates/:project_template_id/task_templates/:id

Destroy a Task Template

Task Workflows

GET

/api/v1.0/workflows

Show a Workflow

POST

/api/v1.0/workflows

Create a Workflow

DELETE

/api/v1.0/workflows

Destroy a workflow

Task Workflows

GET

/api/v1.0/workflows

Show a Workflow

POST

/api/v1.0/workflows

Create a Workflow

DELETE

/api/v1.0/workflows

Destroy a workflow

TaskAssignments

DELETE

/api/v1.0/tasks/:task_id/assignments/:id

Destroy a task assignment for another user

POST

/api/v1.0/tasks/:task_id/assignments/:id/play

Play a Task

POST

/api/v1.0/tasks/:task_id/assignments/:id/pause

Pause a task assignment

POST

/api/v1.0/tasks/:task_id/assignments/:id/deliver

Deliver a task assignment

POST

/api/v1.0/tasks/:task_id/assignments/:id/reopen

Reopen a Task

POST

/api/v1.0/tasks/:task_id/assignments/:id/reposition

Reposition a Task

POST

/api/v1.0/tasks/:task_id/assignments/:id/reestimate

Reestimate a task assignment

TaskType

GET

/api/v1.0/task_types

List task types

GET

/api/v1.0/task_types/:id

Show a task type

POST

/api/v1.0/task_types

Create a task type

PUT

/api/v1.0/task_types/:id

Update a task type

TaskType

GET

/api/v1.0/task_types

List task types

GET

/api/v1.0/task_types/:id

Show a task type

POST

/api/v1.0/task_types

Create a task type

PUT

/api/v1.0/task_types/:id

Update a task type

Tasks

GET

/api/v1.0/tasks

Query tasks

GET

/api/v1.0/tasks/:id

Show a Task

GET

/api/v1.0/tasks/:id/subtasks

Show task subtasks

POST

/api/v1.0/tasks

Create a Task

PUT

/api/v1.0/tasks/:id

Update task title

PUT

/api/v1.0/tasks/:id

Update task desired start date

PUT

/api/v1.0/tasks/:id

Update task desired date

PUT

/api/v1.0/tasks/:id

Update task tags

PUT

/api/v1.0/tasks/:id

Update task points

PUT

/api/v1.0/tasks/:id

Update task custom fields

DELETE

/api/v1.0/tasks/:id

Destroy a Task

POST

/api/v1.0/tasks/:id/play

Play a Task

POST

/api/v1.0/tasks/:id/play

Create assignment and play Task

POST

/api/v1.0/tasks/:id/pause

Pause a Task

POST

/api/v1.0/tasks/:id/change_board

Change a Task board to another

POST

/api/v1.0/tasks/:id/change_project

Change the project from task to another

POST

/api/v1.0/tasks/:id/change_type

Change the type from task to another

POST

/api/v1.0/tasks/:id/deliver

Deliver a Task

POST

/api/v1.0/tasks/:id/reopen

Reopen a Task

POST

/api/v1.0/tasks/:id/reposition

Reposition a Task

POST

/api/v1.0/tasks/:id/reestimate

Reestimate a Task using assingee_id param

POST

/api/v1.0/tasks/:id/share

Share the task

POST

/api/v1.0/tasks/:id/unshare

Unshare the task

POST

/api/v1.0/tasks/:id/complete_workflow_step

Complete a workflow step

POST

/api/v1.0/tasks/:id/undo_workflow_step

Undo a workflow step

POST

/api/v1.0/tasks/:id/mark_as_urgent

Mark a task as urgent

POST

/api/v1.0/tasks/:id/unmark_as_urgent

Unmark a task as urgent

POST

/api/v1.0/tasks/:id/create_assignments

Create a task assignment for another user

POST

/api/v1.0/tasks/:id/move_to_top

Move a task to top

POST

/api/v1.0/tasks/clone

Clone a task

POST

/api/v1.0/tasks/:id/move_to_next_stage

Move a task to next stage

GET

/api/v1.0/tasks/:id/form_answers

Get answers to the form which created the task

GET

/api/v1.0/tasks/:id/fields

List fields from task's board

Tasks

GET

/api/v1.0/tasks

Query tasks

GET

/api/v1.0/tasks/:id

Show a Task

GET

/api/v1.0/tasks/:id/subtasks

Show task subtasks

POST

/api/v1.0/tasks

Create a Task

PUT

/api/v1.0/tasks/:id

Update task title

PUT

/api/v1.0/tasks/:id

Update task desired start date

PUT

/api/v1.0/tasks/:id

Update task desired date

PUT

/api/v1.0/tasks/:id

Update task tags

PUT

/api/v1.0/tasks/:id

Update task points

PUT

/api/v1.0/tasks/:id

Update task custom fields

DELETE

/api/v1.0/tasks/:id

Destroy a Task

POST

/api/v1.0/tasks/:id/play

Play a Task

POST

/api/v1.0/tasks/:id/play

Create assignment and play Task

POST

/api/v1.0/tasks/:id/pause

Pause a Task

POST

/api/v1.0/tasks/:id/change_board

Change a Task board to another

POST

/api/v1.0/tasks/:id/change_project

Change the project from task to another

POST

/api/v1.0/tasks/:id/change_type

Change the type from task to another

POST

/api/v1.0/tasks/:id/deliver

Deliver a Task

POST

/api/v1.0/tasks/:id/reopen

Reopen a Task

POST

/api/v1.0/tasks/:id/reposition

Reposition a Task

POST

/api/v1.0/tasks/:id/reestimate

Reestimate a Task using assingee_id param

POST

/api/v1.0/tasks/:id/share

Share the task

POST

/api/v1.0/tasks/:id/unshare

Unshare the task

POST

/api/v1.0/tasks/:id/complete_workflow_step

Complete a workflow step

POST

/api/v1.0/tasks/:id/undo_workflow_step

Undo a workflow step

POST

/api/v1.0/tasks/:id/mark_as_urgent

Mark a task as urgent

POST

/api/v1.0/tasks/:id/unmark_as_urgent

Unmark a task as urgent

POST

/api/v1.0/tasks/:id/create_assignments

Create a task assignment for another user

POST

/api/v1.0/tasks/:id/move_to_top

Move a task to top

POST

/api/v1.0/tasks/clone

Clone a task

POST

/api/v1.0/tasks/:id/move_to_next_stage

Move a task to next stage

GET

/api/v1.0/tasks/:id/form_answers

Get answers to the form which created the task

GET

/api/v1.0/tasks/:id/fields

List fields from task's board

Teams

GET

/api/v1.0/teams

List teams

GET

/api/v1.0/teams/:id

Show a team

POST

/api/v1.0/teams

Create a team

PUT

/api/v1.0/teams/:id

Update a team

DELETE

/api/v1.0/teams/:id

Destroy a team

POST

/api/v1.0/teams/:id/add_member

Add a user to a team

POST

/api/v1.0/teams/:id/remove_member

Remove a user from team

Time Worked

GET

/api/v1.0/reports/time_worked

List all time worked grouped and filtered by parameters

Users

GET

/api/v1.0/users

List all Users

GET

/api/v1.0/users/:user_id

Get a user by id

POST

/api/v1.0/users

Create a user

PUT

/api/v1.0/users/:id

Update a user

Users

GET

/api/v1.0/users

List all Users

GET

/api/v1.0/users/:user_id

Get a user by id

POST

/api/v1.0/users

Create a user

PUT

/api/v1.0/users/:id

Update a user

UsersVacations

GET

/api/v1.0/users_vacations

Get user vacations

POST

/api/v1.0/users/:user_id/vacations

Create an user vacation

GET

/api/v1.0/users_vacations/:id

Show an user vacation

PUT

/api/v1.0/users_vacations/:id

Update an user vacation

DELETE

/api/v1.0/users_vacations/:id

Destroy an user vacation

UsersVacations

GET

/api/v1.0/users_vacations

Get user vacations

POST

/api/v1.0/users/:user_id/vacations

Create an user vacation

GET

/api/v1.0/users_vacations/:id

Show an user vacation

PUT

/api/v1.0/users_vacations/:id

Update an user vacation

DELETE

/api/v1.0/users_vacations/:id

Destroy an user vacation

Workflow Elements

GET

/api/v1.0/workflows/:workflow_id/workflow_elements

List workflow elements

GET

/api/v1.0/workflows/:workflow_id/workflow_elements/:id

Show a workflow element

POST

/api/v1.0/workflows/:workflow_id/workflow_elements

Create a workflow element

POST

/api/v1.0/workflows/:workflow_id/workflow_elements/:id/reorder

Reorder a workflow element

DELETE

/api/v1.0/workflows/:workflow_id/workflow_elements/:id

Destroy a workflow element

Workflows

GET

/api/v1.0/workflows

Show a task workflow

POST

/api/v1.0/workflows

Create a task workflow

DELETE

/api/v1.0/workflows

Destroy task workflow

GET

/api/v1.0/workflows

Show a task_template workflow

POST

/api/v1.0/workflows

Create a task_template workflow

DELETE

/api/v1.0/workflows

Destroy task_template workflow

Workflows

GET

/api/v1.0/workflows

Show a task workflow

POST

/api/v1.0/workflows

Create a task workflow

DELETE

/api/v1.0/workflows

Destroy task workflow

GET

/api/v1.0/workflows

Show a task_template workflow

POST

/api/v1.0/workflows

Create a task_template workflow

DELETE

/api/v1.0/workflows

Destroy task_template workflow