# List all tasks Endpoint: GET /api/v1/tasks Version: 0.0.1 Security: bearerAuth ## Query parameters: - `page` (number) - `per_page` (number) - `employee_id` (string) - `employer_id` (string) - `client_id` (string) - `job_id` (string) - `expired_at_lte` (string,null) Query tasks by expiration time. Tasks with expiration time equal or earlier than the provided timestamp are returned. - `expired_at_gte` (string,null) Query tasks by expiration time. Tasks with expiration time equal or later than the provided timestamp are returned. ## Response 200 fields (application/json): - `data` (array, required) - `data.id` (string, required) - `data.form_id` (string, required) - `data.form_custom_attributes` (object, required) Custom attribute values - `data.name` (string, required) Name of the form. - `data.employee_id` (string, required) - `data.employer_id` (string,null, required) - `data.client_id` (string,null, required) - `data.job_id` (string,null, required) - `data.status` (string, required) Enum: "requires_action", "completed", "expired" - `data.next_action` (object, required) - `data.next_action.type` (string,null, required) Enum: "employer_action", "employee_action", "system_action" - `data.expired_at` (string,null, required) Expiration time is re-evaluated at the time of task completion. If your integration reads the field value before a task is completed, please note that the value may change when the task is completed. - `data.deletion_scheduled_at` (string,null, required) When this field is set, the task will be automatically deleted at the specified time. - `data.deletion_allowed_at` (string,null, required) When this field is set, the task cannot be deleted until the specified time. - `data.due_at` (string,null, required) - `data.progress` (object, required) - `data.progress.percent` (number, required) - `data.progress.numerator` (number, required) - `data.progress.denominator` (number, required) - `data.subtasks` (array, required) - `data.subtasks.form_page_id` (string, required) - `data.subtasks.assignee_type` (string, required) Enum: "employee", "employer" - `data.tags` (array, required) - `data.tags.name` (string, required) - `data.created_at` (string, required) - `data.updated_at` (string, required) - `total` (number, required) ## Response 400 fields (application/json): - `message` (string, required) ## Response 401 fields (application/json): - `message` (string, required) Enum: "Not authorized"