Tasks

Create/Update/Get/Delete tasks within your tenant and account.

After creating a task, you can also assign subtasks inside of it via the Subtasks API.

Create task

POST https://app.ninjapipe.com/v1/tasks/create

Creates a new task in your tenant.

Make sure to add API_KEY as a header. This is your API Key found in the API & Integrations page.

Update a task

PUThttps://app.ninjapipe.com/v1/tasks/{task_id}/update

Get task

GEThttps://app.ninjapipe.com/v1/tasks/getTaskById?id={task_id}

Get all tasks

GEThttps://app.ninjapipe.com/v1/tasks/getall

Parameters:

  • getall?page=1 - Use this to paginate

Mark task as complete

GEThttps://app.ninjapipe.com/v1/tasks/{task_id}/saveCheckStatus

Last updated