Tasks
Create/Update/Get/Delete tasks within your tenant and account.
Last updated
Create/Update/Get/Delete tasks within your tenant and account.
Last updated
After creating a task, you can also assign subtasks inside of it via the Subtasks API.
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.
PUT
https://app.ninjapipe.com/v1/tasks/{task_id}/update
GET
https://app.ninjapipe.com/v1/tasks/getTaskById?id={task_id}
GET
https://app.ninjapipe.com/v1/tasks/getall
Parameters:
getall?page=1
- Use this to paginate
GET
https://app.ninjapipe.com/v1/tasks/{task_id}/saveCheckStatus
/api/v1/tasks/create
API_KEY
{"taskName":"Website Redesign","description":"Redesign the company homepage to improve user experience.","startDate":"2023-06-15T09:00:00","endDate":"2023-07-15T17:00:00","local_date":"2023-06-15T09:00:00","isCompleted":false}
No body
/api/v1/tasks/749/update
API_KEY
{"taskName":"Website Redesign!","description":"Redesign the company homepage to improve user experience.","startDate":"2023-06-15T09:00:00","endDate":"2023-07-15T17:00:00","local_date":"2023-06-15T09:00:00","isCompleted":false}
No body
/api/v1/tasks/getTaskById
749
API_KEY
No body
/api/v1/tasks/getall
1
API_KEY
No body
/api/v1/tasks/749/saveCheckStatus
API_KEY
{"isCompleted":true}
No body