---
title: "Creates a new section (task group) within a project."
method: POST
path: "/api/Section"
tags: ["Section"]
---

# Creates a new section (task group) within a project.

`POST /api/Section`

## Request body

- NewSection — Request model for creating a new section within a project.
  - `ProjectIDFK` integer — The project this section should be created in.
  - `Title` string — Section title/name.
  - `StartDateUTC` string, date-time — Optional start date for the section (UTC).
  - `EndDateUTC` string, date-time — Optional end date for the section (UTC).

## Response `200`

Returns the created section with assigned Section ID.

- SectionDetails — A section (task group) within a project, with title, dates, display order, and project association.
  - `SectionID` integer — Unique identifier for the section.
  - `ProjectIDFK` integer — The project this section belongs to.
  - `Title` string — Section title/name.
  - `DisplayOrder` integer — Sort order position for display within the project.
  - `StartDateUTC` string, date-time — Section start date in UTC.
  - `StartDate` string, date-time — Section start date in local time.
  - `EndDateUTC` string, date-time — Section end date in UTC.
  - `EndDate` string, date-time — Section end date in local time.

---

[API](https://skmtc.net/avaza/apis/avaza-api-documentation.md) · [All operations](https://skmtc.net/avaza/apis/avaza-api-documentation/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/avaza/avaza-api-documentation/versions/1eeadf750514/schema)
