---
title: "Get Task Info"
method: GET
path: "/tasks/details/{task_id}"
tags: ["tasks"]
---

# Get Task Info

`GET /tasks/details/{task_id}`

Retrieve detailed information for a specific task, ensuring it belongs to the user.
Returns only fields used by mobile app (title, description, customer, location, start_date, type).

## Path parameters

- `task_id` string, required

## Response `200`

Successful Response

- TaskDetailResponse — Lightweight response model for task detail endpoint - only includes fields used by mobile app.
  - `title` string, nullable — Title of the task
  - `description` string, nullable — Description of the task (fallback for title)
  - `customer` string, required — Customer name
  - `location` string, nullable — Full address string
  - `start_date` string, nullable — Scheduled start date/time in ISO format
  - `type` string — Integration type identifier

## Other responses

- `404` — Not found
- `422` — Validation Error

---

[API](https://skmtc.dev/noso/apis/crucible-backend-api.md) · [All operations](https://skmtc.dev/noso/apis/crucible-backend-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/noso/crucible-backend-api/revisions/d96feef8e2ef/schema)
