---
title: "Get all tasks in project"
method: GET
path: "/api/v3/projects/{project_id}/tasks"
tags: ["tasks"]
---

# Get all tasks in project

`GET /api/v3/projects/{project_id}/tasks`

## Path parameters

- `project_id` string, uuid, required

## Query parameters

- `last_synced_at` string, date-time
- `filters[status_id_eq]` string
- `filters[location_id_eq]` string
- `filters[team_id_eq]` string
- `filters[owner_user_id_eq]` string
- `filters[creator_user_id_eq]` string
- `filters[tag_eq]` string
- `filters[tag_like]` string
- `filters[created_at_gte]` string
- `filters[created_at_gt]` string
- `filters[created_at_lte]` string
- `filters[created_at_lt]` string
- `filters[name_eq]` string
- `filters[name_like]` string
- `filters[updated_at_gte]` string
- `filters[updated_at_gt]` string
- `filters[updated_at_lte]` string
- `filters[updated_at_lt]` string
- `filters[start_at_gte]` string
- `filters[start_at_gt]` string
- `filters[start_at_lte]` string
- `filters[start_at_lt]` string
- `filters[end_at_gte]` string
- `filters[end_at_gt]` string
- `filters[end_at_lte]` string
- `filters[end_at_lt]` string
- `filters[due_date_gte]` string
- `filters[due_date_gt]` string
- `filters[due_date_lte]` string
- `filters[due_date_lt]` string
- `filters[fixed_at_gte]` string
- `filters[fixed_at_gt]` string
- `filters[fixed_at_lte]` string
- `filters[fixed_at_lt]` string
- `filters[verified_at_gte]` string
- `filters[verified_at_gt]` string
- `filters[verified_at_lte]` string
- `filters[verified_at_lt]` string
- `filters[floorplan_id_eq]` string

## Headers

- `Fieldwire-Version` string, date, required
- `Fieldwire-Filter` 'active' | 'deleted'
- `Fieldwire-Per-Page` integer

## Response `200`

Successful response

- Task[]
  - `id` string, uuid, required — ID of the entity
  - `creator_user_id` integer, required — ID of the user who created this entity
  - `last_editor_user_id` integer, required — ID of the user who most recently edited this entity
  - `owner_user_id` integer, required — ID of the user who owns the entity
  - `floorplan_id` string, uuid, nullable — ID of the floorplan the entity belongs to
  - `location_id` string, uuid, nullable — ID of the location the entity belongs to
  - `project_id` string, uuid, required — ID of the project this entity belongs to
  - `team_id` string, uuid, nullable — ID of the team the entity belongs to
  - `is_local` boolean, required — Indicates if task is positioned on floorplan
  - `is_private` boolean, required — A Boolean value indicating if Task is private to User
  - `name` string, nullable — Name of the entity
  - `due_date` string, date, nullable — Date when task is to be completed by
  - `cost_value` number, double, nullable — Monetary cost associated with the Task
  - `man_power_value` number, double, nullable — Numeric value representing estimated time in Man-power hours/day/month
  - `pos_x` integer, nullable — Horizontal pixels (from left of floorplan) of task pin's point
  - `pos_y` integer, nullable — Vertical pixels (from top of floorplan) of task pin's point
  - `pos_z` integer, nullable — Z coordinate of a task
  - `priority` integer, required — Priority of the task (1, 2, 3)
  - `sequence_number` integer, nullable — Unique sequential identifier of task on project
  - `created_at` string, date-time, required — Time when the server created the entity
  - `deleted_at` string, date-time, nullable — Time the server deleted the entity
  - `device_created_at` string, date-time, required — Time when the device created the entity
  - `device_updated_at` string, date-time, required — Time when the device last updated the entity
  - `due_at` string, date-time, nullable — Datetime of when the Task is due
  - `end_at` string, date-time, nullable — Time when this task is marked as ending
  - `fixed_at` string, date-time, nullable — Datetime of when the Task is fixed
  - `start_at` string, date-time, nullable — Datetime of when the Task is to start
  - `updated_at` string, date-time, required — Time when the server last updated the entity
  - `verified_at` string, date-time, nullable — Time when task was verified
  - `resolved_conflict` boolean, nullable, required — Specifies if PUT/PATCH request was rejected - do not store this field!
  - `status_id` string, uuid, nullable — Entity ID linking to the Status of the Task
  - `user_ids` integer[], nullable — All User IDs associated with this Task
  - `task_type_id` string, uuid, nullable — ID of the TaskType of the Task
  - `latest_component_device_updated_at` string, date-time, nullable, required — Time when the device last updated a component associated to the entity (bubble, check item, tag or CTA)

## Other responses

- `429` — Rate limit exceeded

---

[API](https://skmtc.dev/fieldwire/apis/fieldwire-super-api.md) · [All operations](https://skmtc.dev/fieldwire/apis/fieldwire-super-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/fieldwire/fieldwire-super-api/revisions/66ee1c20b92d/schema)
