# Story Tasks

Story Tasks are used in Kantata OX to track a list of checklist items within a Story.
This model includes a completion boolean and a position integer.

## Fetching a list of Story Tasks

 - [GET /story_tasks](https://developer.kantata.com/kantata/specification/story-tasks/get-story-tasks.md): Returns all story tasks belonging to stories in projects that the user is partcipating in.


This endpoint returns structured Story Task objects.
As with all Kantata OX API endpoints, the returned data will be referenced in sorted order in the results array
and will be indexed by ID in the story_tasks top-level JSON key.
Please see our Response Format section for more information.

## Creating a new Story Task

 - [POST /story_tasks](https://developer.kantata.com/kantata/specification/story-tasks/create-story-task.md): This endpoint returns structured Story Task objects.
As with all Kantata OX API endpoints, the returned data will be referenced in sorted order in the results array
and will be indexed by ID in the story_tasks top-level JSON key.
Please see our Response Format section for more information.

## Fetching a single Story Task

 - [GET /story_tasks/{id}](https://developer.kantata.com/kantata/specification/story-tasks/get-story-task.md): This endpoint returns structured Story Task objects.
As with all Kantata OX API endpoints, the returned data will be referenced in sorted order in the results array
and will be indexed by ID in the story_tasks top-level JSON key.
Please see our Response Format section for more information.

## Updating an existing Story Task

 - [PUT /story_tasks/{id}](https://developer.kantata.com/kantata/specification/story-tasks/update-story-task.md): This endpoint returns structured Story Task objects.
As with all Kantata OX API endpoints, the returned data will be referenced in sorted order in the results array
and will be indexed by ID in the story_tasks top-level JSON key.
Please see our Response Format section for more information.

## Deleting an existing Story Task

 - [DELETE /story_tasks/{id}](https://developer.kantata.com/kantata/specification/story-tasks/delete-story-task.md): The response will contain no content and an HTTP 204 status code if the request was
successful, or a standard Kantata OX error message explaining why the object could not be deleted.

