✅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
PUT
https://app.ninjapipe.com/v1/tasks/{task_id}/update
Get task
GET
https://app.ninjapipe.com/v1/tasks/getTaskById?id={task_id}
Get all tasks
GET
https://app.ninjapipe.com/v1/tasks/getall
Parameters:
getall?page=1
- Use this to paginate
Mark task as complete
GET
https://app.ninjapipe.com/v1/tasks/{task_id}/saveCheckStatus
Last updated