This endpoint returns every active project the authenticated user is a member of, ordered by most recently created. Each entry includes the project’s metadata and the user’s privilege level within that project (Documentation Index
Fetch the complete documentation index at: https://mintlify.com/Vedant-Jayesh-Oza/otas/llms.txt
Use this file to discover all available pages before exploring further.
1 = Admin, 2 = Member). Only projects where both the project and the membership are marked active are included.
Request
Method:GETURL:
http://localhost:8000/api/project/v1/list/Authentication:
X-OTAS-USER-TOKEN header
Headers
Signed JWT returned by
/api/user/v1/login/ or /api/user/v1/create/.Response
1 on success, 0 on failure.projects_listed on success.Example
Error responses
status_description | HTTP status | Cause |
|---|---|---|
missing_token | 400 | The X-OTAS-USER-TOKEN header was absent. |
invalid_token | 401 | The token is malformed, expired, or not associated with a user. |
projects_list_failed | 500 | Unexpected server-side error. |