Creating Your First Task
Once you have registered and logged in, you can start creating accountability tasks. A task belongs to the authenticated user who creates it. The basic flow is:Before you start
You need a registered TaskSocial account and an active login session. If you haven’t authenticated yet, follow the Authentication guide first.1. Create a task
Create a task using:2. View your tasks
After creating a task, you can retrieve the tasks belonging to your account:3. View the shared task feed
TaskSocial also provides a shared task feed through:my-tasks because it is intended to show shared task activity rather than only tasks belonging to the current user.
4. Update a task
To update a task, send a request to::id with the ID of the task you want to update.
For example:
5. Delete a task
To delete a task, use::id with the ID of the task you want to delete.
The backend checks the authenticated user and verifies task ownership before deleting it.
Task ownership
Every task is associated with the user who created it. For protected task operations, the backend follows this flow:Task endpoints
For complete request schemas, responses, and interactive examples, see the API Reference.