---
title: "Create organization checklists"
method: POST
path: "/v2/organization/checklists"
tags: ["Organization Checklists"]
---

# Create organization checklists

`POST /v2/organization/checklists`

Creates multiple organization checklists

## Request body

- object[]
  - `name` string — Checklist name
  - `description` object — Task description
    - `text` string
    - `html` string
  - `required` boolean — Indicates if the checklist completion is required
  - `dueDate` number, double — Due date
  - `assignedToUserId` integer — User identifier assigned to the checklist
  - `organizationId` integer — Organization identifier
  - `checklistTemplateId` integer — Checklist template identifier
  - `tasks` object[] — Checklist tasks
    - `id` integer — Identifier
    - `position` integer — Position of the task
    - `name` string — Task name
    - `description` object — Task description
      - `text` string
      - `html` string
    - `assignedToUserId` integer — User identifier assigned to the checklist task
    - `dueDate` number, double — Due date
    - `completed` boolean — Indicates if the checklist is completed

## Response `200`

Returns a list of created organization checklists

- object[]
  - `id` integer — Identifier
  - `name` string — Checklist name (must be unique)
  - `description` object — Task description
    - `text` string
    - `html` string
  - `required` boolean — Indicates if the checklist completion is required
  - `dueDate` number, double — Due date
  - `completed` boolean — Indicates if the checklist is completed
  - `completedOn` number, double — Date of completion
  - `assignedTo` object — Archive by user
    - `id` integer
    - `firstName` string
    - `lastName` string
    - `deleted` boolean
  - `lastUpdatedOn` number, double — Last updated on
  - `lastUpdatedBy` object — Archive by user
    - `id` integer
    - `firstName` string
    - `lastName` string
    - `deleted` boolean
  - `completedTaskCount` integer — Last updated by user
  - `totalTaskCount` integer — Checklist's total tasks count
  - `tasks` object[] — Checklist's tasks
    - `id` integer — Identifier
    - `position` integer — Position of the task
    - `name` string — Task name
    - `description` object — Task description
      - `text` string
      - `html` string
    - `assignedTo` object — Archive by user
      - `id` integer
      - `firstName` string
      - `lastName` string
      - `deleted` boolean
    - `dueDate` number, double — Due date
    - `completed` boolean — Indicates if the checklist is completed
    - `completedOn` number, double — Date of completion
    - `completedBy` object — Archive by user
      - `id` integer
      - `firstName` string
      - `lastName` string
      - `deleted` boolean
  - `organizationId` integer — Organization identifier
  - `clientName` string — Client name
  - `archived` boolean — Indicates if the checklist is archived
  - `archivedBy` object — Archive by user
    - `id` integer
    - `firstName` string
    - `lastName` string
    - `deleted` boolean
  - `archiveTime` number, double — Archive time

---

[API](https://skmtc.net/ninjarmm/apis/ninjaone-public-api-2-0.md) · [All operations](https://skmtc.net/ninjarmm/apis/ninjaone-public-api-2-0/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/ninjarmm/ninjaone-public-api-2-0/versions/753f26d46650/schema)
