> ## Documentation Index
> Fetch the complete documentation index at: https://developer.box.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Lists all tasks for a file

export const Link = ({href, children, className, ...props}) => {
  const localizedHref = localizeLink(href);
  return <a href={localizedHref} className={className} {...props}>
      {children}
    </a>;
};

export const MultiRelatedLinks = ({sections = []}) => {
  if (!sections || sections.length === 0) {
    return null;
  }
  return <div className="space-y-8">
      {sections.map((section, index) => <RelatedLinks key={index} title={section.title} items={section.items} />)}
    </div>;
};

export const RelatedLinks = ({title, items = []}) => {
  const getBadgeClass = badge => {
    if (!badge) return "badge-default";
    const badgeType = badge.toLowerCase().replace(/\s+/g, "-");
    return `badge-${badge === "ガイド" ? "guide" : badgeType}`;
  };
  if (!items || items.length === 0) {
    return null;
  }
  return <div className="my-8">
      {}
      <h3 className="text-sm font-bold uppercase tracking-wider mb-4">{title}</h3>

      {}
      <div className="flex flex-col gap-3">
        {items.map((item, index) => <a key={index} href={item.href} className="py-2 px-3 rounded related_link hover:bg-[#f2f2f2] dark:hover:bg-[#111827] flex items-center gap-3 group no-underline hover:no-underline border-b-0">
            {}
            <span className={`px-2 py-1 rounded-full text-xs font-semibold uppercase tracking-wide flex-shrink-0 ${getBadgeClass(item.badge)}`}>
              {item.badge}
            </span>

            {}
            <span className="text-base">{item.label}</span>
          </a>)}
      </div>
    </div>;
};

To list all of the tasks for a specific file, call the
<Link href="/reference/get-files-id-tasks">`GET /files/:id/tasks`</Link> with the `id` of the file.

<CodeGroup>
  ```sh cURL theme={null}
  curl -i -X GET "https://api.box.com/2.0/files/12345/tasks" \
       -H "authorization: Bearer <ACCESS_TOKEN>"
  ```

  ```typescript Node/TypeScript v10 theme={null}
  await client.tasks.getFileTasks(file.id);
  ```

  ```python Python v10 theme={null}
  client.tasks.get_file_tasks(file.id)
  ```

  ```csharp .NET v10 theme={null}
  await client.Tasks.GetFileTasksAsync(fileId: file.Id);
  ```

  ```swift Swift v10 theme={null}
  try await client.tasks.getFileTasks(fileId: file.id)
  ```

  ```java Java v10 theme={null}
  client.getTasks().getFileTasks(file.getId())
  ```

  ```java Java v5 theme={null}
  BoxFile file = new BoxFile(api, "id");
  List<BoxTask.Info> tasks = file.getTasks();
  ```

  ```py Python v4 theme={null}
  tasks = client.file(file_id='11111').get_tasks()
  for task in tasks:
      print(f'Task ID is {task.id} and the type is {task.type}')
  ```

  ```csharp .NET v6 theme={null}
  BoxCollection<BoxTask> tasks = await client.FilesManager.FilesManager.GetFileTasks("11111");
  ```

  ```js Node v4 theme={null}
  client.files.getTasks('11111')
   .then(tasks => {
    /* tasks -> {
     total_count: 1,
     entries: 
     [ { type: 'task',
      id: '22222',
      item: 
       { type: 'file',
       id: '11111',
       sequence_id: '6',
       etag: '6',
       sha1: '81cc829fb8366fcfc108aa6c5a9bde01a6a10c16',
       name: 'box-logo.png' },
      due_at: null } ] }
    */
   });
  ```
</CodeGroup>

<RelatedLinks
  title="RELATED APIS"
  items={[
{ label: translate("List tasks on file"), href: "/reference/get-files-id-tasks", badge: "GET" }
]}
/>

<RelatedLinks
  title="RELATED GUIDES"
  items={[
{ label: translate("Create a task"), href: "/guides/tasks/create", badge: "GUIDE" },
{ label: translate("Get information about a task"), href: "/guides/tasks/get", badge: "GUIDE" }
]}
/>
