{ "openapi": "3.1.0", "info": { "title": "Kaneo API", "description": "Kaneo Project Management API - Manage projects, tasks, labels, and more", "version": "1.0.0" }, "servers": [ { "url": "http://localhost:1337/api", "description": "Kaneo API Server" } ], "components": { "securitySchemes": { "bearerAuth": { "type": "http", "scheme": "bearer", "description": "Bearer token authentication" }, "apiKeyCookie": { "type": "apiKey", "in": "cookie", "name": "apiKeyCookie", "description": "API Key authentication via cookie" } }, "responses": { "getConfig_200_response": { "description": "Application settings", "content": { "application/json": { "schema": { "type": "object", "properties": { "disableRegistration": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ] }, "isDemoMode": { "type": "boolean" }, "hasSmtp": { "type": "boolean" }, "hasGithubSignIn": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ] }, "hasGoogleSignIn": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ] }, "hasDiscordSignIn": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ] }, "hasCustomOAuth": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ] }, "hasGuestAccess": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ] } }, "required": [ "disableRegistration", "isDemoMode", "hasSmtp", "hasGithubSignIn", "hasGoogleSignIn", "hasDiscordSignIn", "hasCustomOAuth", "hasGuestAccess" ] } } } }, "listProjects_200_response": { "description": "List of projects with statistics", "content": { "application/json": { "schema": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "workspaceId": { "type": "string" }, "slug": { "type": "string" }, "icon": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "name": { "type": "string" }, "description": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "createdAt": {}, "isPublic": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ] } }, "required": [ "id", "workspaceId", "slug", "icon", "name", "description", "createdAt", "isPublic" ] } } } } }, "createProject_200_response": { "description": "Project created successfully", "content": { "application/json": { "schema": { "type": "object", "properties": { "id": { "type": "string" }, "workspaceId": { "type": "string" }, "slug": { "type": "string" }, "icon": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "name": { "type": "string" }, "description": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "createdAt": {}, "isPublic": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ] } }, "required": [ "id", "workspaceId", "slug", "icon", "name", "description", "createdAt", "isPublic" ] } } } }, "getProject_200_response": { "description": "Project details", "content": { "application/json": { "schema": { "type": "object", "properties": { "id": { "type": "string" }, "workspaceId": { "type": "string" }, "slug": { "type": "string" }, "icon": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "name": { "type": "string" }, "description": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "createdAt": {}, "isPublic": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ] } }, "required": [ "id", "workspaceId", "slug", "icon", "name", "description", "createdAt", "isPublic" ] } } } }, "updateProject_200_response": { "description": "Project updated successfully", "content": { "application/json": { "schema": { "type": "object", "properties": { "id": { "type": "string" }, "workspaceId": { "type": "string" }, "slug": { "type": "string" }, "icon": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "name": { "type": "string" }, "description": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "createdAt": {}, "isPublic": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ] } }, "required": [ "id", "workspaceId", "slug", "icon", "name", "description", "createdAt", "isPublic" ] } } } }, "deleteProject_200_response": { "description": "Project deleted successfully", "content": { "application/json": { "schema": { "type": "object", "properties": { "id": { "type": "string" }, "workspaceId": { "type": "string" }, "slug": { "type": "string" }, "icon": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "name": { "type": "string" }, "description": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "createdAt": {}, "isPublic": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ] } }, "required": [ "id", "workspaceId", "slug", "icon", "name", "description", "createdAt", "isPublic" ] } } } }, "listTasks_200_response": { "description": "Project with tasks organized by columns", "content": { "application/json": { "schema": {} } } }, "createTask_200_response": { "description": "Task created successfully", "content": { "application/json": { "schema": { "type": "object", "properties": { "id": { "type": "string" }, "projectId": { "type": "string" }, "position": { "anyOf": [ { "type": "number" }, { "type": "null" } ] }, "number": { "anyOf": [ { "type": "number" }, { "type": "null" } ] }, "userId": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "title": { "type": "string" }, "description": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "status": { "type": "string" }, "priority": { "enum": [ "no-priority", "low", "medium", "high", "urgent" ] }, "dueDate": {}, "createdAt": {} }, "required": [ "id", "projectId", "position", "number", "userId", "title", "description", "status", "priority", "createdAt" ] } } } }, "getTask_200_response": { "description": "Task details", "content": { "application/json": { "schema": { "type": "object", "properties": { "id": { "type": "string" }, "projectId": { "type": "string" }, "position": { "anyOf": [ { "type": "number" }, { "type": "null" } ] }, "number": { "anyOf": [ { "type": "number" }, { "type": "null" } ] }, "userId": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "title": { "type": "string" }, "description": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "status": { "type": "string" }, "priority": { "enum": [ "no-priority", "low", "medium", "high", "urgent" ] }, "dueDate": {}, "createdAt": {} }, "required": [ "id", "projectId", "position", "number", "userId", "title", "description", "status", "priority", "createdAt" ] } } } }, "updateTask_200_response": { "description": "Task updated successfully", "content": { "application/json": { "schema": { "type": "object", "properties": { "id": { "type": "string" }, "projectId": { "type": "string" }, "position": { "anyOf": [ { "type": "number" }, { "type": "null" } ] }, "number": { "anyOf": [ { "type": "number" }, { "type": "null" } ] }, "userId": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "title": { "type": "string" }, "description": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "status": { "type": "string" }, "priority": { "enum": [ "no-priority", "low", "medium", "high", "urgent" ] }, "dueDate": {}, "createdAt": {} }, "required": [ "id", "projectId", "position", "number", "userId", "title", "description", "status", "priority", "createdAt" ] } } } }, "deleteTask_200_response": { "description": "Task deleted successfully", "content": { "application/json": { "schema": { "type": "object", "properties": { "id": { "type": "string" }, "projectId": { "type": "string" }, "position": { "anyOf": [ { "type": "number" }, { "type": "null" } ] }, "number": { "anyOf": [ { "type": "number" }, { "type": "null" } ] }, "userId": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "title": { "type": "string" }, "description": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "status": { "type": "string" }, "priority": { "enum": [ "no-priority", "low", "medium", "high", "urgent" ] }, "dueDate": {}, "createdAt": {} }, "required": [ "id", "projectId", "position", "number", "userId", "title", "description", "status", "priority", "createdAt" ] } } } }, "exportTasks_200_response": { "description": "Exported tasks data", "content": { "application/json": { "schema": {} } } }, "importTasks_200_response": { "description": "Tasks imported successfully", "content": { "application/json": { "schema": {} } } }, "updateTaskStatus_200_response": { "description": "Task status updated successfully", "content": { "application/json": { "schema": { "type": "object", "properties": { "id": { "type": "string" }, "projectId": { "type": "string" }, "position": { "anyOf": [ { "type": "number" }, { "type": "null" } ] }, "number": { "anyOf": [ { "type": "number" }, { "type": "null" } ] }, "userId": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "title": { "type": "string" }, "description": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "status": { "type": "string" }, "priority": { "enum": [ "no-priority", "low", "medium", "high", "urgent" ] }, "dueDate": {}, "createdAt": {} }, "required": [ "id", "projectId", "position", "number", "userId", "title", "description", "status", "priority", "createdAt" ] } } } }, "updateTaskPriority_200_response": { "description": "Task priority updated successfully", "content": { "application/json": { "schema": { "type": "object", "properties": { "id": { "type": "string" }, "projectId": { "type": "string" }, "position": { "anyOf": [ { "type": "number" }, { "type": "null" } ] }, "number": { "anyOf": [ { "type": "number" }, { "type": "null" } ] }, "userId": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "title": { "type": "string" }, "description": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "status": { "type": "string" }, "priority": { "enum": [ "no-priority", "low", "medium", "high", "urgent" ] }, "dueDate": {}, "createdAt": {} }, "required": [ "id", "projectId", "position", "number", "userId", "title", "description", "status", "priority", "createdAt" ] } } } }, "updateTaskAssignee_200_response": { "description": "Task assignee updated successfully", "content": { "application/json": { "schema": { "type": "object", "properties": { "id": { "type": "string" }, "projectId": { "type": "string" }, "position": { "anyOf": [ { "type": "number" }, { "type": "null" } ] }, "number": { "anyOf": [ { "type": "number" }, { "type": "null" } ] }, "userId": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "title": { "type": "string" }, "description": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "status": { "type": "string" }, "priority": { "enum": [ "no-priority", "low", "medium", "high", "urgent" ] }, "dueDate": {}, "createdAt": {} }, "required": [ "id", "projectId", "position", "number", "userId", "title", "description", "status", "priority", "createdAt" ] } } } }, "updateTaskDueDate_200_response": { "description": "Task due date updated successfully", "content": { "application/json": { "schema": { "type": "object", "properties": { "id": { "type": "string" }, "projectId": { "type": "string" }, "position": { "anyOf": [ { "type": "number" }, { "type": "null" } ] }, "number": { "anyOf": [ { "type": "number" }, { "type": "null" } ] }, "userId": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "title": { "type": "string" }, "description": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "status": { "type": "string" }, "priority": { "enum": [ "no-priority", "low", "medium", "high", "urgent" ] }, "dueDate": {}, "createdAt": {} }, "required": [ "id", "projectId", "position", "number", "userId", "title", "description", "status", "priority", "createdAt" ] } } } }, "updateTaskTitle_200_response": { "description": "Task title updated successfully", "content": { "application/json": { "schema": { "type": "object", "properties": { "id": { "type": "string" }, "projectId": { "type": "string" }, "position": { "anyOf": [ { "type": "number" }, { "type": "null" } ] }, "number": { "anyOf": [ { "type": "number" }, { "type": "null" } ] }, "userId": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "title": { "type": "string" }, "description": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "status": { "type": "string" }, "priority": { "enum": [ "no-priority", "low", "medium", "high", "urgent" ] }, "dueDate": {}, "createdAt": {} }, "required": [ "id", "projectId", "position", "number", "userId", "title", "description", "status", "priority", "createdAt" ] } } } }, "updateTaskDescription_200_response": { "description": "Task description updated successfully", "content": { "application/json": { "schema": { "type": "object", "properties": { "id": { "type": "string" }, "projectId": { "type": "string" }, "position": { "anyOf": [ { "type": "number" }, { "type": "null" } ] }, "number": { "anyOf": [ { "type": "number" }, { "type": "null" } ] }, "userId": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "title": { "type": "string" }, "description": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "status": { "type": "string" }, "priority": { "enum": [ "no-priority", "low", "medium", "high", "urgent" ] }, "dueDate": {}, "createdAt": {} }, "required": [ "id", "projectId", "position", "number", "userId", "title", "description", "status", "priority", "createdAt" ] } } } }, "getColumns_200_response": { "description": "List of columns ordered by position", "content": { "application/json": { "schema": {} } } }, "createColumn_200_response": { "description": "Column created successfully", "content": { "application/json": { "schema": {} } } }, "reorderColumns_200_response": { "description": "Columns reordered successfully", "content": { "application/json": { "schema": {} } } }, "updateColumn_200_response": { "description": "Column updated successfully", "content": { "application/json": { "schema": {} } } }, "deleteColumn_200_response": { "description": "Column deleted successfully", "content": { "application/json": { "schema": {} } } }, "getActivities_200_response": { "description": "List of activities for the task", "content": { "application/json": { "schema": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "taskId": { "type": "string" }, "type": { "enum": [ "comment", "task", "status_changed", "priority_changed", "unassigned", "assignee_changed", "due_date_changed", "title_changed", "description_changed", "create" ] }, "createdAt": {}, "userId": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "content": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "externalUserName": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "externalUserAvatar": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "externalSource": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "externalUrl": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "required": [ "id", "taskId", "type", "createdAt", "userId", "content", "externalUserName", "externalUserAvatar", "externalSource", "externalUrl" ] } } } } }, "createActivity_200_response": { "description": "Activity created successfully", "content": { "application/json": { "schema": { "type": "object", "properties": { "id": { "type": "string" }, "taskId": { "type": "string" }, "type": { "enum": [ "comment", "task", "status_changed", "priority_changed", "unassigned", "assignee_changed", "due_date_changed", "title_changed", "description_changed", "create" ] }, "createdAt": {}, "userId": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "content": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "externalUserName": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "externalUserAvatar": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "externalSource": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "externalUrl": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "required": [ "id", "taskId", "type", "createdAt", "userId", "content", "externalUserName", "externalUserAvatar", "externalSource", "externalUrl" ] } } } }, "createComment_200_response": { "description": "Comment created successfully", "content": { "application/json": { "schema": { "type": "object", "properties": { "id": { "type": "string" }, "taskId": { "type": "string" }, "type": { "enum": [ "comment", "task", "status_changed", "priority_changed", "unassigned", "assignee_changed", "due_date_changed", "title_changed", "description_changed", "create" ] }, "createdAt": {}, "userId": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "content": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "externalUserName": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "externalUserAvatar": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "externalSource": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "externalUrl": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "required": [ "id", "taskId", "type", "createdAt", "userId", "content", "externalUserName", "externalUserAvatar", "externalSource", "externalUrl" ] } } } }, "updateComment_200_response": { "description": "Comment updated successfully", "content": { "application/json": { "schema": { "type": "object", "properties": { "id": { "type": "string" }, "taskId": { "type": "string" }, "type": { "enum": [ "comment", "task", "status_changed", "priority_changed", "unassigned", "assignee_changed", "due_date_changed", "title_changed", "description_changed", "create" ] }, "createdAt": {}, "userId": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "content": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "externalUserName": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "externalUserAvatar": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "externalSource": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "externalUrl": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "required": [ "id", "taskId", "type", "createdAt", "userId", "content", "externalUserName", "externalUserAvatar", "externalSource", "externalUrl" ] } } } }, "deleteComment_200_response": { "description": "Comment deleted successfully", "content": { "application/json": { "schema": { "type": "object", "properties": { "id": { "type": "string" }, "taskId": { "type": "string" }, "type": { "enum": [ "comment", "task", "status_changed", "priority_changed", "unassigned", "assignee_changed", "due_date_changed", "title_changed", "description_changed", "create" ] }, "createdAt": {}, "userId": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "content": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "externalUserName": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "externalUserAvatar": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "externalSource": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "externalUrl": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "required": [ "id", "taskId", "type", "createdAt", "userId", "content", "externalUserName", "externalUserAvatar", "externalSource", "externalUrl" ] } } } }, "getTaskTimeEntries_200_response": { "description": "List of time entries for the task", "content": { "application/json": { "schema": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "taskId": { "type": "string" }, "userId": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "description": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "startTime": {}, "endTime": {}, "duration": { "anyOf": [ { "type": "number" }, { "type": "null" } ] }, "createdAt": {} }, "required": [ "id", "taskId", "userId", "description", "startTime", "duration", "createdAt" ] } } } } }, "getTimeEntry_200_response": { "description": "Time entry details", "content": { "application/json": { "schema": { "type": "object", "properties": { "id": { "type": "string" }, "taskId": { "type": "string" }, "userId": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "description": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "startTime": {}, "endTime": {}, "duration": { "anyOf": [ { "type": "number" }, { "type": "null" } ] }, "createdAt": {} }, "required": [ "id", "taskId", "userId", "description", "startTime", "duration", "createdAt" ] } } } }, "updateTimeEntry_200_response": { "description": "Time entry updated successfully", "content": { "application/json": { "schema": { "type": "object", "properties": { "id": { "type": "string" }, "taskId": { "type": "string" }, "userId": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "description": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "startTime": {}, "endTime": {}, "duration": { "anyOf": [ { "type": "number" }, { "type": "null" } ] }, "createdAt": {} }, "required": [ "id", "taskId", "userId", "description", "startTime", "duration", "createdAt" ] } } } }, "createTimeEntry_200_response": { "description": "Time entry created successfully", "content": { "application/json": { "schema": { "type": "object", "properties": { "id": { "type": "string" }, "taskId": { "type": "string" }, "userId": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "description": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "startTime": {}, "endTime": {}, "duration": { "anyOf": [ { "type": "number" }, { "type": "null" } ] }, "createdAt": {} }, "required": [ "id", "taskId", "userId", "description", "startTime", "duration", "createdAt" ] } } } }, "getTaskLabels_200_response": { "description": "List of labels for the task", "content": { "application/json": { "schema": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "color": { "type": "string" }, "createdAt": {}, "taskId": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "workspaceId": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "required": [ "id", "name", "color", "createdAt", "taskId", "workspaceId" ] } } } } }, "getWorkspaceLabels_200_response": { "description": "List of labels in the workspace", "content": { "application/json": { "schema": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "color": { "type": "string" }, "createdAt": {}, "taskId": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "workspaceId": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "required": [ "id", "name", "color", "createdAt", "taskId", "workspaceId" ] } } } } }, "createLabel_200_response": { "description": "Label created successfully", "content": { "application/json": { "schema": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "color": { "type": "string" }, "createdAt": {}, "taskId": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "workspaceId": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "required": [ "id", "name", "color", "createdAt", "taskId", "workspaceId" ] } } } }, "getLabel_200_response": { "description": "Label details", "content": { "application/json": { "schema": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "color": { "type": "string" }, "createdAt": {}, "taskId": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "workspaceId": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "required": [ "id", "name", "color", "createdAt", "taskId", "workspaceId" ] } } } }, "updateLabel_200_response": { "description": "Label updated successfully", "content": { "application/json": { "schema": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "color": { "type": "string" }, "createdAt": {}, "taskId": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "workspaceId": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "required": [ "id", "name", "color", "createdAt", "taskId", "workspaceId" ] } } } }, "deleteLabel_200_response": { "description": "Label deleted successfully", "content": { "application/json": { "schema": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "color": { "type": "string" }, "createdAt": {}, "taskId": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "workspaceId": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "required": [ "id", "name", "color", "createdAt", "taskId", "workspaceId" ] } } } }, "listNotifications_200_response": { "description": "List of notifications", "content": { "application/json": { "schema": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "userId": { "type": "string" }, "title": { "type": "string" }, "content": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "type": { "enum": [ "info", "task_created", "workspace_created", "task_status_changed", "task_assignee_changed", "time_entry_created" ] }, "isRead": { "type": "boolean" }, "resourceId": { "type": "string" }, "resourceType": { "enum": [ "task", "workspace" ] }, "createdAt": {} }, "required": [ "id", "userId", "title", "content", "type", "createdAt" ] } } } } }, "createNotification_200_response": { "description": "Notification created successfully", "content": { "application/json": { "schema": { "type": "object", "properties": { "id": { "type": "string" }, "userId": { "type": "string" }, "title": { "type": "string" }, "content": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "type": { "enum": [ "info", "task_created", "workspace_created", "task_status_changed", "task_assignee_changed", "time_entry_created" ] }, "isRead": { "type": "boolean" }, "resourceId": { "type": "string" }, "resourceType": { "enum": [ "task", "workspace" ] }, "createdAt": {} }, "required": [ "id", "userId", "title", "content", "type", "createdAt" ] } } } }, "markNotificationAsRead_200_response": { "description": "Notification marked as read", "content": { "application/json": { "schema": { "type": "object", "properties": { "id": { "type": "string" }, "userId": { "type": "string" }, "title": { "type": "string" }, "content": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "type": { "enum": [ "info", "task_created", "workspace_created", "task_status_changed", "task_assignee_changed", "time_entry_created" ] }, "isRead": { "type": "boolean" }, "resourceId": { "type": "string" }, "resourceType": { "enum": [ "task", "workspace" ] }, "createdAt": {} }, "required": [ "id", "userId", "title", "content", "type", "createdAt" ] } } } }, "markAllNotificationsAsRead_200_response": { "description": "All notifications marked as read", "content": { "application/json": { "schema": { "type": "object", "properties": { "success": { "type": "boolean" }, "count": { "type": "number" } }, "required": [ "success" ] } } } }, "clearAllNotifications_200_response": { "description": "All notifications cleared", "content": { "application/json": { "schema": { "type": "object", "properties": { "success": { "type": "boolean" }, "count": { "type": "number" } }, "required": [ "success" ] } } } }, "globalSearch_200_response": { "description": "Search results", "content": { "application/json": { "schema": { "type": "object", "properties": { "tasks": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "projectId": { "type": "string" }, "position": { "anyOf": [ { "type": "number" }, { "type": "null" } ] }, "number": { "anyOf": [ { "type": "number" }, { "type": "null" } ] }, "userId": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "title": { "type": "string" }, "description": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "status": { "type": "string" }, "priority": { "enum": [ "no-priority", "low", "medium", "high", "urgent" ] }, "dueDate": {}, "createdAt": {} }, "required": [ "id", "projectId", "position", "number", "userId", "title", "description", "status", "priority", "createdAt" ] } }, "projects": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "workspaceId": { "type": "string" }, "slug": { "type": "string" }, "icon": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "name": { "type": "string" }, "description": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "createdAt": {}, "isPublic": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ] } }, "required": [ "id", "workspaceId", "slug", "icon", "name", "description", "createdAt", "isPublic" ] } }, "workspaces": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "slug": { "type": "string" }, "logo": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "metadata": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "description": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "createdAt": {} }, "required": [ "id", "name", "slug", "logo", "metadata", "description", "createdAt" ] } }, "comments": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "taskId": { "type": "string" }, "type": { "enum": [ "comment", "task", "status_changed", "priority_changed", "unassigned", "assignee_changed", "due_date_changed", "title_changed", "description_changed", "create" ] }, "createdAt": {}, "userId": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "content": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "externalUserName": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "externalUserAvatar": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "externalSource": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "externalUrl": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "required": [ "id", "taskId", "type", "createdAt", "userId", "content", "externalUserName", "externalUserAvatar", "externalSource", "externalUrl" ] } }, "activities": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "taskId": { "type": "string" }, "type": { "enum": [ "comment", "task", "status_changed", "priority_changed", "unassigned", "assignee_changed", "due_date_changed", "title_changed", "description_changed", "create" ] }, "createdAt": {}, "userId": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "content": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "externalUserName": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "externalUserAvatar": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "externalSource": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "externalUrl": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "required": [ "id", "taskId", "type", "createdAt", "userId", "content", "externalUserName", "externalUserAvatar", "externalSource", "externalUrl" ] } } }, "required": [] } } } }, "getGitHubAppInfo_200_response": { "description": "GitHub app information", "content": { "application/json": { "schema": { "type": "object", "properties": { "appName": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "required": [ "appName" ] } } } }, "listGitHubRepositories_200_response": { "description": "List of repositories", "content": { "application/json": { "schema": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "number" }, "name": { "type": "string" }, "full_name": { "type": "string" }, "owner": { "type": "object", "properties": { "login": { "type": "string" } }, "required": [ "login" ] }, "private": { "type": "boolean" }, "html_url": { "type": "string" } }, "required": [ "id", "name", "full_name", "owner", "private", "html_url" ] } } } } }, "verifyGitHubInstallation_200_response": { "description": "Verification result", "content": { "application/json": { "schema": { "type": "object", "properties": { "installed": { "type": "boolean" }, "message": { "type": "string" } }, "required": [ "installed" ] } } } }, "getGitHubIntegration_200_response": { "description": "GitHub integration details", "content": { "application/json": { "schema": { "type": "object", "properties": { "id": { "type": "string" }, "projectId": { "type": "string" }, "repositoryOwner": { "type": "string" }, "repositoryName": { "type": "string" }, "installationId": { "anyOf": [ { "type": "number" }, { "type": "null" } ] }, "isActive": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ] }, "createdAt": {}, "updatedAt": {} }, "required": [ "id", "projectId", "repositoryOwner", "repositoryName", "installationId", "isActive", "createdAt", "updatedAt" ] } } } }, "createGitHubIntegration_200_response": { "description": "Integration created successfully", "content": { "application/json": { "schema": { "type": "object", "properties": { "id": { "type": "string" }, "projectId": { "type": "string" }, "repositoryOwner": { "type": "string" }, "repositoryName": { "type": "string" }, "installationId": { "anyOf": [ { "type": "number" }, { "type": "null" } ] }, "isActive": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ] }, "createdAt": {}, "updatedAt": {} }, "required": [ "id", "projectId", "repositoryOwner", "repositoryName", "installationId", "isActive", "createdAt", "updatedAt" ] } } } }, "updateGitHubIntegration_200_response": { "description": "Integration updated successfully", "content": { "application/json": { "schema": { "type": "object", "properties": { "id": { "type": "string" }, "projectId": { "type": "string" }, "repositoryOwner": { "type": "string" }, "repositoryName": { "type": "string" }, "installationId": { "anyOf": [ { "type": "number" }, { "type": "null" } ] }, "isActive": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ] }, "createdAt": {}, "updatedAt": {} }, "required": [ "id", "projectId", "repositoryOwner", "repositoryName", "installationId", "isActive", "createdAt", "updatedAt" ] } } } }, "updateGitHubIntegration_404_response": { "description": "Integration not found", "content": { "application/json": { "schema": { "type": "object", "properties": { "error": { "type": "string" } }, "required": [ "error" ] } } } }, "deleteGitHubIntegration_200_response": { "description": "Integration deleted successfully", "content": { "application/json": { "schema": { "type": "object", "properties": { "id": { "type": "string" }, "projectId": { "type": "string" }, "repositoryOwner": { "type": "string" }, "repositoryName": { "type": "string" }, "installationId": { "anyOf": [ { "type": "number" }, { "type": "null" } ] }, "isActive": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ] }, "createdAt": {}, "updatedAt": {} }, "required": [ "id", "projectId", "repositoryOwner", "repositoryName", "installationId", "isActive", "createdAt", "updatedAt" ] } } } }, "importGitHubIssues_200_response": { "description": "Issues imported successfully", "content": { "application/json": { "schema": { "type": "object", "properties": { "imported": { "type": "number" }, "skipped": { "type": "number" }, "errors": { "type": "array", "items": { "type": "string" } } }, "required": [ "imported", "skipped" ] } } } }, "getExternalLinksByTask_200_response": { "description": "External links for the task", "content": { "application/json": { "schema": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "taskId": { "type": "string" }, "integrationId": { "type": "string" }, "resourceType": { "type": "string" }, "externalId": { "type": "string" }, "url": { "type": "string" }, "title": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "metadata": {}, "createdAt": {}, "updatedAt": {} }, "required": [ "id", "taskId", "integrationId", "resourceType", "externalId", "url", "title", "metadata", "createdAt", "updatedAt" ] } } } } }, "getWorkflowRules_200_response": { "description": "List of workflow rules", "content": { "application/json": { "schema": {} } } }, "upsertWorkflowRule_200_response": { "description": "Workflow rule upserted successfully", "content": { "application/json": { "schema": {} } } }, "deleteWorkflowRule_200_response": { "description": "Workflow rule deleted successfully", "content": { "application/json": { "schema": {} } } }, "getUserPendingInvitations_200_response": { "description": "List of pending invitations", "content": { "application/json": { "schema": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "email": { "type": "string" }, "workspaceId": { "type": "string" }, "workspaceName": { "type": "string" }, "inviterName": { "type": "string" }, "expiresAt": { "type": "string" }, "createdAt": { "type": "string" }, "status": { "type": "string" } }, "required": [ "id", "email", "workspaceId", "workspaceName", "inviterName", "expiresAt", "createdAt", "status" ] } } } } }, "getInvitationDetails_200_response": { "description": "Invitation details", "content": { "application/json": { "schema": { "type": "object", "properties": { "valid": { "type": "boolean" }, "invitation": { "type": "object", "properties": { "id": { "type": "string" }, "email": { "type": "string" }, "workspaceName": { "type": "string" }, "inviterName": { "type": "string" }, "expiresAt": { "type": "string" }, "status": { "type": "string" }, "expired": { "type": "boolean" } }, "required": [ "id", "email", "workspaceName", "inviterName", "expiresAt", "status", "expired" ] }, "error": { "type": "string" } }, "required": [ "valid" ] } } } }, "post_organization_create_200_response": { "description": "Success", "content": { "application/json": { "schema": { "type": "object", "description": "The organization that was created", "$ref": "#/components/schemas/Organization" } } } }, "post_organization_create_400_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Bad Request. Usually due to missing parameters, or invalid parameters." }, "post_organization_create_401_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Unauthorized. Due to missing or invalid authentication." }, "post_organization_create_403_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Forbidden. You do not have permission to access this resource or to perform this action." }, "post_organization_create_404_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Not Found. The requested resource was not found." }, "post_organization_create_429_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Too Many Requests. You have exceeded the rate limit. Try again later." }, "post_organization_create_500_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Internal Server Error. This is a problem with the server that you cannot fix." }, "post_organization_update_200_response": { "description": "Success", "content": { "application/json": { "schema": { "type": "object", "description": "The updated organization", "$ref": "#/components/schemas/Organization" } } } }, "post_organization_update_400_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Bad Request. Usually due to missing parameters, or invalid parameters." }, "post_organization_update_401_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Unauthorized. Due to missing or invalid authentication." }, "post_organization_update_403_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Forbidden. You do not have permission to access this resource or to perform this action." }, "post_organization_update_404_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Not Found. The requested resource was not found." }, "post_organization_update_429_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Too Many Requests. You have exceeded the rate limit. Try again later." }, "post_organization_update_500_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Internal Server Error. This is a problem with the server that you cannot fix." }, "post_organization_delete_200_response": { "description": "Success", "content": { "application/json": { "schema": { "type": "string", "description": "The organization id that was deleted" } } } }, "post_organization_delete_400_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Bad Request. Usually due to missing parameters, or invalid parameters." }, "post_organization_delete_401_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Unauthorized. Due to missing or invalid authentication." }, "post_organization_delete_403_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Forbidden. You do not have permission to access this resource or to perform this action." }, "post_organization_delete_404_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Not Found. The requested resource was not found." }, "post_organization_delete_429_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Too Many Requests. You have exceeded the rate limit. Try again later." }, "post_organization_delete_500_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Internal Server Error. This is a problem with the server that you cannot fix." }, "setActiveOrganization_200_response": { "description": "Success", "content": { "application/json": { "schema": { "type": "object", "description": "The organization", "$ref": "#/components/schemas/Organization" } } } }, "setActiveOrganization_400_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Bad Request. Usually due to missing parameters, or invalid parameters." }, "setActiveOrganization_401_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Unauthorized. Due to missing or invalid authentication." }, "setActiveOrganization_403_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Forbidden. You do not have permission to access this resource or to perform this action." }, "setActiveOrganization_404_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Not Found. The requested resource was not found." }, "setActiveOrganization_429_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Too Many Requests. You have exceeded the rate limit. Try again later." }, "setActiveOrganization_500_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Internal Server Error. This is a problem with the server that you cannot fix." }, "getOrganization_200_response": { "description": "Success", "content": { "application/json": { "schema": { "type": "object", "description": "The organization", "$ref": "#/components/schemas/Organization" } } } }, "getOrganization_400_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Bad Request. Usually due to missing parameters, or invalid parameters." }, "getOrganization_401_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Unauthorized. Due to missing or invalid authentication." }, "getOrganization_403_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Forbidden. You do not have permission to access this resource or to perform this action." }, "getOrganization_404_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Not Found. The requested resource was not found." }, "getOrganization_429_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Too Many Requests. You have exceeded the rate limit. Try again later." }, "getOrganization_500_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Internal Server Error. This is a problem with the server that you cannot fix." }, "get_organization_list_200_response": { "description": "Success", "content": { "application/json": { "schema": { "type": "array", "items": { "$ref": "#/components/schemas/Organization" } } } } }, "get_organization_list_400_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Bad Request. Usually due to missing parameters, or invalid parameters." }, "get_organization_list_401_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Unauthorized. Due to missing or invalid authentication." }, "get_organization_list_403_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Forbidden. You do not have permission to access this resource or to perform this action." }, "get_organization_list_404_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Not Found. The requested resource was not found." }, "get_organization_list_429_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Too Many Requests. You have exceeded the rate limit. Try again later." }, "get_organization_list_500_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Internal Server Error. This is a problem with the server that you cannot fix." }, "createOrganizationInvitation_200_response": { "description": "Success", "content": { "application/json": { "schema": { "type": "object", "properties": { "id": { "type": "string" }, "email": { "type": "string" }, "role": { "type": "string" }, "organizationId": { "type": "string" }, "inviterId": { "type": "string" }, "status": { "type": "string" }, "expiresAt": { "type": "string" }, "createdAt": { "type": "string" } }, "required": [ "id", "email", "role", "organizationId", "inviterId", "status", "expiresAt", "createdAt" ] } } } }, "createOrganizationInvitation_400_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Bad Request. Usually due to missing parameters, or invalid parameters." }, "createOrganizationInvitation_401_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Unauthorized. Due to missing or invalid authentication." }, "createOrganizationInvitation_403_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Forbidden. You do not have permission to access this resource or to perform this action." }, "createOrganizationInvitation_404_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Not Found. The requested resource was not found." }, "createOrganizationInvitation_429_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Too Many Requests. You have exceeded the rate limit. Try again later." }, "createOrganizationInvitation_500_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Internal Server Error. This is a problem with the server that you cannot fix." }, "post_organization_cancel_invitation_400_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Bad Request. Usually due to missing parameters, or invalid parameters." }, "post_organization_cancel_invitation_401_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Unauthorized. Due to missing or invalid authentication." }, "post_organization_cancel_invitation_403_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Forbidden. You do not have permission to access this resource or to perform this action." }, "post_organization_cancel_invitation_404_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Not Found. The requested resource was not found." }, "post_organization_cancel_invitation_429_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Too Many Requests. You have exceeded the rate limit. Try again later." }, "post_organization_cancel_invitation_500_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Internal Server Error. This is a problem with the server that you cannot fix." }, "post_organization_accept_invitation_200_response": { "description": "Success", "content": { "application/json": { "schema": { "type": "object", "properties": { "invitation": { "type": "object" }, "member": { "type": "object" } } } } } }, "post_organization_accept_invitation_400_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Bad Request. Usually due to missing parameters, or invalid parameters." }, "post_organization_accept_invitation_401_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Unauthorized. Due to missing or invalid authentication." }, "post_organization_accept_invitation_403_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Forbidden. You do not have permission to access this resource or to perform this action." }, "post_organization_accept_invitation_404_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Not Found. The requested resource was not found." }, "post_organization_accept_invitation_429_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Too Many Requests. You have exceeded the rate limit. Try again later." }, "post_organization_accept_invitation_500_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Internal Server Error. This is a problem with the server that you cannot fix." }, "get_organization_get_invitation_200_response": { "description": "Success", "content": { "application/json": { "schema": { "type": "object", "properties": { "id": { "type": "string" }, "email": { "type": "string" }, "role": { "type": "string" }, "organizationId": { "type": "string" }, "inviterId": { "type": "string" }, "status": { "type": "string" }, "expiresAt": { "type": "string" }, "organizationName": { "type": "string" }, "organizationSlug": { "type": "string" }, "inviterEmail": { "type": "string" } }, "required": [ "id", "email", "role", "organizationId", "inviterId", "status", "expiresAt", "organizationName", "organizationSlug", "inviterEmail" ] } } } }, "get_organization_get_invitation_400_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Bad Request. Usually due to missing parameters, or invalid parameters." }, "get_organization_get_invitation_401_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Unauthorized. Due to missing or invalid authentication." }, "get_organization_get_invitation_403_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Forbidden. You do not have permission to access this resource or to perform this action." }, "get_organization_get_invitation_404_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Not Found. The requested resource was not found." }, "get_organization_get_invitation_429_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Too Many Requests. You have exceeded the rate limit. Try again later." }, "get_organization_get_invitation_500_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Internal Server Error. This is a problem with the server that you cannot fix." }, "post_organization_reject_invitation_200_response": { "description": "Success", "content": { "application/json": { "schema": { "type": "object", "properties": { "invitation": { "type": "object" }, "member": { "type": "object", "nullable": true } } } } } }, "post_organization_reject_invitation_400_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Bad Request. Usually due to missing parameters, or invalid parameters." }, "post_organization_reject_invitation_401_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Unauthorized. Due to missing or invalid authentication." }, "post_organization_reject_invitation_403_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Forbidden. You do not have permission to access this resource or to perform this action." }, "post_organization_reject_invitation_404_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Not Found. The requested resource was not found." }, "post_organization_reject_invitation_429_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Too Many Requests. You have exceeded the rate limit. Try again later." }, "post_organization_reject_invitation_500_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Internal Server Error. This is a problem with the server that you cannot fix." }, "get_organization_list_invitations_400_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Bad Request. Usually due to missing parameters, or invalid parameters." }, "get_organization_list_invitations_401_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Unauthorized. Due to missing or invalid authentication." }, "get_organization_list_invitations_403_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Forbidden. You do not have permission to access this resource or to perform this action." }, "get_organization_list_invitations_404_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Not Found. The requested resource was not found." }, "get_organization_list_invitations_429_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Too Many Requests. You have exceeded the rate limit. Try again later." }, "get_organization_list_invitations_500_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Internal Server Error. This is a problem with the server that you cannot fix." }, "get_organization_get_active_member_200_response": { "description": "Success", "content": { "application/json": { "schema": { "type": "object", "properties": { "id": { "type": "string" }, "userId": { "type": "string" }, "organizationId": { "type": "string" }, "role": { "type": "string" } }, "required": [ "id", "userId", "organizationId", "role" ] } } } }, "get_organization_get_active_member_400_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Bad Request. Usually due to missing parameters, or invalid parameters." }, "get_organization_get_active_member_401_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Unauthorized. Due to missing or invalid authentication." }, "get_organization_get_active_member_403_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Forbidden. You do not have permission to access this resource or to perform this action." }, "get_organization_get_active_member_404_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Not Found. The requested resource was not found." }, "get_organization_get_active_member_429_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Too Many Requests. You have exceeded the rate limit. Try again later." }, "get_organization_get_active_member_500_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Internal Server Error. This is a problem with the server that you cannot fix." }, "post_organization_check_slug_400_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Bad Request. Usually due to missing parameters, or invalid parameters." }, "post_organization_check_slug_401_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Unauthorized. Due to missing or invalid authentication." }, "post_organization_check_slug_403_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Forbidden. You do not have permission to access this resource or to perform this action." }, "post_organization_check_slug_404_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Not Found. The requested resource was not found." }, "post_organization_check_slug_429_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Too Many Requests. You have exceeded the rate limit. Try again later." }, "post_organization_check_slug_500_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Internal Server Error. This is a problem with the server that you cannot fix." }, "post_organization_remove_member_200_response": { "description": "Success", "content": { "application/json": { "schema": { "type": "object", "properties": { "member": { "type": "object", "properties": { "id": { "type": "string" }, "userId": { "type": "string" }, "organizationId": { "type": "string" }, "role": { "type": "string" } }, "required": [ "id", "userId", "organizationId", "role" ] } }, "required": [ "member" ] } } } }, "post_organization_remove_member_400_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Bad Request. Usually due to missing parameters, or invalid parameters." }, "post_organization_remove_member_401_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Unauthorized. Due to missing or invalid authentication." }, "post_organization_remove_member_403_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Forbidden. You do not have permission to access this resource or to perform this action." }, "post_organization_remove_member_404_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Not Found. The requested resource was not found." }, "post_organization_remove_member_429_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Too Many Requests. You have exceeded the rate limit. Try again later." }, "post_organization_remove_member_500_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Internal Server Error. This is a problem with the server that you cannot fix." }, "updateOrganizationMemberRole_200_response": { "description": "Success", "content": { "application/json": { "schema": { "type": "object", "properties": { "member": { "type": "object", "properties": { "id": { "type": "string" }, "userId": { "type": "string" }, "organizationId": { "type": "string" }, "role": { "type": "string" } }, "required": [ "id", "userId", "organizationId", "role" ] } }, "required": [ "member" ] } } } }, "updateOrganizationMemberRole_400_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Bad Request. Usually due to missing parameters, or invalid parameters." }, "updateOrganizationMemberRole_401_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Unauthorized. Due to missing or invalid authentication." }, "updateOrganizationMemberRole_403_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Forbidden. You do not have permission to access this resource or to perform this action." }, "updateOrganizationMemberRole_404_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Not Found. The requested resource was not found." }, "updateOrganizationMemberRole_429_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Too Many Requests. You have exceeded the rate limit. Try again later." }, "updateOrganizationMemberRole_500_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Internal Server Error. This is a problem with the server that you cannot fix." }, "post_organization_leave_400_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Bad Request. Usually due to missing parameters, or invalid parameters." }, "post_organization_leave_401_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Unauthorized. Due to missing or invalid authentication." }, "post_organization_leave_403_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Forbidden. You do not have permission to access this resource or to perform this action." }, "post_organization_leave_404_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Not Found. The requested resource was not found." }, "post_organization_leave_429_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Too Many Requests. You have exceeded the rate limit. Try again later." }, "post_organization_leave_500_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Internal Server Error. This is a problem with the server that you cannot fix." }, "get_organization_list_user_invitations_200_response": { "description": "Success", "content": { "application/json": { "schema": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "email": { "type": "string" }, "role": { "type": "string" }, "organizationId": { "type": "string" }, "organizationName": { "type": "string" }, "inviterId": { "type": "string", "description": "The ID of the user who created the invitation" }, "teamId": { "type": "string", "description": "The ID of the team associated with the invitation", "nullable": true }, "status": { "type": "string" }, "expiresAt": { "type": "string" }, "createdAt": { "type": "string" } }, "required": [ "id", "email", "role", "organizationId", "organizationName", "inviterId", "status", "expiresAt", "createdAt" ] } } } } }, "get_organization_list_user_invitations_400_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Bad Request. Usually due to missing parameters, or invalid parameters." }, "get_organization_list_user_invitations_401_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Unauthorized. Due to missing or invalid authentication." }, "get_organization_list_user_invitations_403_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Forbidden. You do not have permission to access this resource or to perform this action." }, "get_organization_list_user_invitations_404_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Not Found. The requested resource was not found." }, "get_organization_list_user_invitations_429_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Too Many Requests. You have exceeded the rate limit. Try again later." }, "get_organization_list_user_invitations_500_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Internal Server Error. This is a problem with the server that you cannot fix." }, "get_organization_list_members_400_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Bad Request. Usually due to missing parameters, or invalid parameters." }, "get_organization_list_members_401_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Unauthorized. Due to missing or invalid authentication." }, "get_organization_list_members_403_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Forbidden. You do not have permission to access this resource or to perform this action." }, "get_organization_list_members_404_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Not Found. The requested resource was not found." }, "get_organization_list_members_429_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Too Many Requests. You have exceeded the rate limit. Try again later." }, "get_organization_list_members_500_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Internal Server Error. This is a problem with the server that you cannot fix." }, "get_organization_get_active_member_role_400_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Bad Request. Usually due to missing parameters, or invalid parameters." }, "get_organization_get_active_member_role_401_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Unauthorized. Due to missing or invalid authentication." }, "get_organization_get_active_member_role_403_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Forbidden. You do not have permission to access this resource or to perform this action." }, "get_organization_get_active_member_role_404_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Not Found. The requested resource was not found." }, "get_organization_get_active_member_role_429_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Too Many Requests. You have exceeded the rate limit. Try again later." }, "get_organization_get_active_member_role_500_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Internal Server Error. This is a problem with the server that you cannot fix." }, "post_organization_create_team_200_response": { "description": "Team created successfully", "content": { "application/json": { "schema": { "type": "object", "properties": { "id": { "type": "string", "description": "Unique identifier of the created team" }, "name": { "type": "string", "description": "Name of the team" }, "organizationId": { "type": "string", "description": "ID of the organization the team belongs to" }, "createdAt": { "type": "string", "format": "date-time", "description": "Timestamp when the team was created" }, "updatedAt": { "type": "string", "format": "date-time", "description": "Timestamp when the team was last updated" } }, "required": [ "id", "name", "organizationId", "createdAt", "updatedAt" ] } } } }, "post_organization_create_team_400_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Bad Request. Usually due to missing parameters, or invalid parameters." }, "post_organization_create_team_401_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Unauthorized. Due to missing or invalid authentication." }, "post_organization_create_team_403_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Forbidden. You do not have permission to access this resource or to perform this action." }, "post_organization_create_team_404_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Not Found. The requested resource was not found." }, "post_organization_create_team_429_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Too Many Requests. You have exceeded the rate limit. Try again later." }, "post_organization_create_team_500_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Internal Server Error. This is a problem with the server that you cannot fix." }, "get_organization_list_teams_200_response": { "description": "Teams retrieved successfully", "content": { "application/json": { "schema": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string", "description": "Unique identifier of the team" }, "name": { "type": "string", "description": "Name of the team" }, "organizationId": { "type": "string", "description": "ID of the organization the team belongs to" }, "createdAt": { "type": "string", "format": "date-time", "description": "Timestamp when the team was created" }, "updatedAt": { "type": "string", "format": "date-time", "description": "Timestamp when the team was last updated" } }, "required": [ "id", "name", "organizationId", "createdAt", "updatedAt" ] }, "description": "Array of team objects within the organization" } } } }, "get_organization_list_teams_400_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Bad Request. Usually due to missing parameters, or invalid parameters." }, "get_organization_list_teams_401_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Unauthorized. Due to missing or invalid authentication." }, "get_organization_list_teams_403_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Forbidden. You do not have permission to access this resource or to perform this action." }, "get_organization_list_teams_404_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Not Found. The requested resource was not found." }, "get_organization_list_teams_429_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Too Many Requests. You have exceeded the rate limit. Try again later." }, "get_organization_list_teams_500_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Internal Server Error. This is a problem with the server that you cannot fix." }, "post_organization_remove_team_200_response": { "description": "Team removed successfully", "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string", "description": "Confirmation message indicating successful removal", "enum": [ "Team removed successfully." ] } }, "required": [ "message" ] } } } }, "post_organization_remove_team_400_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Bad Request. Usually due to missing parameters, or invalid parameters." }, "post_organization_remove_team_401_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Unauthorized. Due to missing or invalid authentication." }, "post_organization_remove_team_403_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Forbidden. You do not have permission to access this resource or to perform this action." }, "post_organization_remove_team_404_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Not Found. The requested resource was not found." }, "post_organization_remove_team_429_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Too Many Requests. You have exceeded the rate limit. Try again later." }, "post_organization_remove_team_500_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Internal Server Error. This is a problem with the server that you cannot fix." }, "post_organization_update_team_200_response": { "description": "Team updated successfully", "content": { "application/json": { "schema": { "type": "object", "properties": { "id": { "type": "string", "description": "Unique identifier of the updated team" }, "name": { "type": "string", "description": "Updated name of the team" }, "organizationId": { "type": "string", "description": "ID of the organization the team belongs to" }, "createdAt": { "type": "string", "format": "date-time", "description": "Timestamp when the team was created" }, "updatedAt": { "type": "string", "format": "date-time", "description": "Timestamp when the team was last updated" } }, "required": [ "id", "name", "organizationId", "createdAt", "updatedAt" ] } } } }, "post_organization_update_team_400_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Bad Request. Usually due to missing parameters, or invalid parameters." }, "post_organization_update_team_401_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Unauthorized. Due to missing or invalid authentication." }, "post_organization_update_team_403_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Forbidden. You do not have permission to access this resource or to perform this action." }, "post_organization_update_team_404_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Not Found. The requested resource was not found." }, "post_organization_update_team_429_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Too Many Requests. You have exceeded the rate limit. Try again later." }, "post_organization_update_team_500_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Internal Server Error. This is a problem with the server that you cannot fix." }, "post_organization_set_active_team_200_response": { "description": "Success", "content": { "application/json": { "schema": { "type": "object", "description": "The team", "$ref": "#/components/schemas/Team" } } } }, "post_organization_set_active_team_400_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Bad Request. Usually due to missing parameters, or invalid parameters." }, "post_organization_set_active_team_401_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Unauthorized. Due to missing or invalid authentication." }, "post_organization_set_active_team_403_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Forbidden. You do not have permission to access this resource or to perform this action." }, "post_organization_set_active_team_404_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Not Found. The requested resource was not found." }, "post_organization_set_active_team_429_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Too Many Requests. You have exceeded the rate limit. Try again later." }, "post_organization_set_active_team_500_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Internal Server Error. This is a problem with the server that you cannot fix." }, "get_organization_list_user_teams_200_response": { "description": "Teams retrieved successfully", "content": { "application/json": { "schema": { "type": "array", "items": { "type": "object", "description": "The team", "$ref": "#/components/schemas/Team" }, "description": "Array of team objects within the organization" } } } }, "get_organization_list_user_teams_400_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Bad Request. Usually due to missing parameters, or invalid parameters." }, "get_organization_list_user_teams_401_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Unauthorized. Due to missing or invalid authentication." }, "get_organization_list_user_teams_403_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Forbidden. You do not have permission to access this resource or to perform this action." }, "get_organization_list_user_teams_404_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Not Found. The requested resource was not found." }, "get_organization_list_user_teams_429_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Too Many Requests. You have exceeded the rate limit. Try again later." }, "get_organization_list_user_teams_500_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Internal Server Error. This is a problem with the server that you cannot fix." }, "get_organization_list_team_members_200_response": { "description": "Teams retrieved successfully", "content": { "application/json": { "schema": { "type": "array", "items": { "type": "object", "description": "The team member", "properties": { "id": { "type": "string", "description": "Unique identifier of the team member" }, "userId": { "type": "string", "description": "The user ID of the team member" }, "teamId": { "type": "string", "description": "The team ID of the team the team member is in" }, "createdAt": { "type": "string", "format": "date-time", "description": "Timestamp when the team member was created" } }, "required": [ "id", "userId", "teamId", "createdAt" ] }, "description": "Array of team member objects within the team" } } } }, "get_organization_list_team_members_400_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Bad Request. Usually due to missing parameters, or invalid parameters." }, "get_organization_list_team_members_401_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Unauthorized. Due to missing or invalid authentication." }, "get_organization_list_team_members_403_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Forbidden. You do not have permission to access this resource or to perform this action." }, "get_organization_list_team_members_404_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Not Found. The requested resource was not found." }, "get_organization_list_team_members_429_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Too Many Requests. You have exceeded the rate limit. Try again later." }, "get_organization_list_team_members_500_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Internal Server Error. This is a problem with the server that you cannot fix." }, "post_organization_add_team_member_200_response": { "description": "Team member created successfully", "content": { "application/json": { "schema": { "type": "object", "description": "The team member", "properties": { "id": { "type": "string", "description": "Unique identifier of the team member" }, "userId": { "type": "string", "description": "The user ID of the team member" }, "teamId": { "type": "string", "description": "The team ID of the team the team member is in" }, "createdAt": { "type": "string", "format": "date-time", "description": "Timestamp when the team member was created" } }, "required": [ "id", "userId", "teamId", "createdAt" ] } } } }, "post_organization_add_team_member_400_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Bad Request. Usually due to missing parameters, or invalid parameters." }, "post_organization_add_team_member_401_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Unauthorized. Due to missing or invalid authentication." }, "post_organization_add_team_member_403_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Forbidden. You do not have permission to access this resource or to perform this action." }, "post_organization_add_team_member_404_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Not Found. The requested resource was not found." }, "post_organization_add_team_member_429_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Too Many Requests. You have exceeded the rate limit. Try again later." }, "post_organization_add_team_member_500_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Internal Server Error. This is a problem with the server that you cannot fix." }, "post_organization_remove_team_member_200_response": { "description": "Team member removed successfully", "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string", "description": "Confirmation message indicating successful removal", "enum": [ "Team member removed successfully." ] } }, "required": [ "message" ] } } } }, "post_organization_remove_team_member_400_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Bad Request. Usually due to missing parameters, or invalid parameters." }, "post_organization_remove_team_member_401_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Unauthorized. Due to missing or invalid authentication." }, "post_organization_remove_team_member_403_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Forbidden. You do not have permission to access this resource or to perform this action." }, "post_organization_remove_team_member_404_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Not Found. The requested resource was not found." }, "post_organization_remove_team_member_429_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Too Many Requests. You have exceeded the rate limit. Try again later." }, "post_organization_remove_team_member_500_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Internal Server Error. This is a problem with the server that you cannot fix." }, "post_organization_has_permission_200_response": { "description": "Success", "content": { "application/json": { "schema": { "type": "object", "properties": { "error": { "type": "string" }, "success": { "type": "boolean" } }, "required": [ "success" ] } } } }, "post_organization_has_permission_400_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Bad Request. Usually due to missing parameters, or invalid parameters." }, "post_organization_has_permission_401_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": [ "message" ] } } }, "description": "Unauthorized. Due to missing or invalid authentication." }, "post_organization_has_permission_403_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Forbidden. You do not have permission to access this resource or to perform this action." }, "post_organization_has_permission_404_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Not Found. The requested resource was not found." }, "post_organization_has_permission_429_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Too Many Requests. You have exceeded the rate limit. Try again later." }, "post_organization_has_permission_500_response": { "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } } } } }, "description": "Internal Server Error. This is a problem with the server that you cannot fix." } }, "parameters": { "workspaceId_query_spec_paths_project_get_parameters_0": { "in": "query", "name": "workspaceId", "schema": { "type": "string" }, "required": true }, "id_path_spec_paths_project_id_get_parameters_0": { "in": "path", "name": "id", "schema": { "type": "string" }, "required": true }, "workspaceId_query_spec_paths_project_id_get_parameters_1": { "in": "query", "name": "workspaceId", "schema": { "type": "string" }, "required": true }, "id_path_spec_paths_project_id_put_parameters_0": { "in": "path", "name": "id", "schema": { "type": "string" }, "required": true }, "id_path_spec_paths_project_id_delete_parameters_0": { "in": "path", "name": "id", "schema": { "type": "string" }, "required": true }, "projectId_path_spec_paths_task_tasks_projectId_get_parameters_0": { "in": "path", "name": "projectId", "schema": { "type": "string" }, "required": true }, "projectId_path_spec_paths_task_projectId_post_parameters_0": { "schema": { "type": "string" }, "in": "path", "name": "projectId", "required": true }, "id_path_spec_paths_task_id_get_parameters_0": { "in": "path", "name": "id", "schema": { "type": "string" }, "required": true }, "id_path_spec_paths_task_id_put_parameters_0": { "in": "path", "name": "id", "schema": { "type": "string" }, "required": true }, "id_path_spec_paths_task_id_delete_parameters_0": { "in": "path", "name": "id", "schema": { "type": "string" }, "required": true }, "projectId_path_spec_paths_task_export_projectId_get_parameters_0": { "in": "path", "name": "projectId", "schema": { "type": "string" }, "required": true }, "projectId_path_spec_paths_task_import_projectId_post_parameters_0": { "in": "path", "name": "projectId", "schema": { "type": "string" }, "required": true }, "id_path_spec_paths_task_status_id_put_parameters_0": { "in": "path", "name": "id", "schema": { "type": "string" }, "required": true }, "id_path_spec_paths_task_priority_id_put_parameters_0": { "in": "path", "name": "id", "schema": { "type": "string" }, "required": true }, "id_path_spec_paths_task_assignee_id_put_parameters_0": { "in": "path", "name": "id", "schema": { "type": "string" }, "required": true }, "id_path_spec_paths_task_due_date_id_put_parameters_0": { "in": "path", "name": "id", "schema": { "type": "string" }, "required": true }, "id_path_spec_paths_task_title_id_put_parameters_0": { "in": "path", "name": "id", "schema": { "type": "string" }, "required": true }, "id_path_spec_paths_task_description_id_put_parameters_0": { "in": "path", "name": "id", "schema": { "type": "string" }, "required": true }, "projectId_path_spec_paths_column_projectId_get_parameters_0": { "in": "path", "name": "projectId", "schema": { "type": "string" }, "required": true }, "projectId_path_spec_paths_column_projectId_post_parameters_0": { "in": "path", "name": "projectId", "schema": { "type": "string" }, "required": true }, "projectId_path_spec_paths_column_reorder_projectId_put_parameters_0": { "in": "path", "name": "projectId", "schema": { "type": "string" }, "required": true }, "id_path_spec_paths_column_id_put_parameters_0": { "in": "path", "name": "id", "schema": { "type": "string" }, "required": true }, "id_path_spec_paths_column_id_delete_parameters_0": { "in": "path", "name": "id", "schema": { "type": "string" }, "required": true }, "taskId_path_spec_paths_activity_taskId_get_parameters_0": { "in": "path", "name": "taskId", "schema": { "type": "string" }, "required": true }, "taskId_path_spec_paths_time_entry_task_taskId_get_parameters_0": { "in": "path", "name": "taskId", "schema": { "type": "string" }, "required": true }, "id_path_spec_paths_time_entry_id_get_parameters_0": { "in": "path", "name": "id", "schema": { "type": "string" }, "required": true }, "id_path_spec_paths_time_entry_id_put_parameters_0": { "in": "path", "name": "id", "schema": { "type": "string" }, "required": true }, "taskId_path_spec_paths_label_task_taskId_get_parameters_0": { "in": "path", "name": "taskId", "schema": { "type": "string" }, "required": true }, "workspaceId_path_spec_paths_label_workspace_workspaceId_get_parameters_0": { "in": "path", "name": "workspaceId", "schema": { "type": "string" }, "required": true }, "id_path_spec_paths_label_id_get_parameters_0": { "in": "path", "name": "id", "schema": { "type": "string" }, "required": true }, "id_path_spec_paths_label_id_put_parameters_0": { "in": "path", "name": "id", "schema": { "type": "string" }, "required": true }, "id_path_spec_paths_label_id_delete_parameters_0": { "in": "path", "name": "id", "schema": { "type": "string" }, "required": true }, "id_path_spec_paths_notification_id_read_patch_parameters_0": { "in": "path", "name": "id", "schema": { "type": "string" }, "required": true }, "q_query_spec_paths_search_get_parameters_0": { "in": "query", "name": "q", "schema": { "type": "string", "minLength": 1 }, "required": true }, "type_query_spec_paths_search_get_parameters_1": { "in": "query", "name": "type", "schema": { "enum": [ "all", "tasks", "projects", "workspaces", "comments", "activities" ], "default": "all" } }, "workspaceId_query_spec_paths_search_get_parameters_2": { "in": "query", "name": "workspaceId", "schema": { "type": "string" } }, "projectId_query_spec_paths_search_get_parameters_3": { "in": "query", "name": "projectId", "schema": { "type": "string" } }, "limit_query_spec_paths_search_get_parameters_4": { "in": "query", "name": "limit", "schema": { "type": "string", "minimum": 1, "maximum": 50, "default": "20" } }, "userEmail_query_spec_paths_search_get_parameters_5": { "in": "query", "name": "userEmail", "schema": { "type": "string", "format": "email" } }, "projectId_path_spec_paths_github_integration_project_projectId_get_parameters_0": { "in": "path", "name": "projectId", "schema": { "type": "string" }, "required": true }, "projectId_path_spec_paths_github_integration_project_projectId_post_parameters_0": { "in": "path", "name": "projectId", "schema": { "type": "string" }, "required": true }, "projectId_path_spec_paths_github_integration_project_projectId_patch_parameters_0": { "in": "path", "name": "projectId", "schema": { "type": "string" }, "required": true }, "projectId_path_spec_paths_github_integration_project_projectId_delete_parameters_0": { "in": "path", "name": "projectId", "schema": { "type": "string" }, "required": true }, "taskId_path_spec_paths_external_link_task_taskId_get_parameters_0": { "in": "path", "name": "taskId", "schema": { "type": "string" }, "required": true }, "projectId_path_spec_paths_workflow_rule_projectId_get_parameters_0": { "in": "path", "name": "projectId", "schema": { "type": "string" }, "required": true }, "projectId_path_spec_paths_workflow_rule_projectId_put_parameters_0": { "in": "path", "name": "projectId", "schema": { "type": "string" }, "required": true }, "id_path_spec_paths_workflow_rule_id_delete_parameters_0": { "in": "path", "name": "id", "schema": { "type": "string" }, "required": true }, "id_path_spec_paths_invitation_id_get_parameters_0": { "in": "path", "name": "id", "schema": { "type": "string" }, "required": true }, "id_query_spec_paths_organization_get_invitation_get_parameters_0": { "name": "id", "in": "query", "schema": { "type": "string", "description": "The ID of the invitation to get" } } }, "requestBodies": { "createProject_request_body": { "content": { "application/json": { "schema": { "type": "object", "properties": { "name": { "type": "string" }, "workspaceId": { "type": "string" }, "icon": { "type": "string" }, "slug": { "type": "string" } }, "required": [ "name", "workspaceId", "icon", "slug" ] } } } }, "updateProject_request_body": { "content": { "application/json": { "schema": { "type": "object", "properties": { "name": { "type": "string" }, "icon": { "type": "string" }, "slug": { "type": "string" }, "description": { "type": "string" }, "isPublic": { "type": "boolean" } }, "required": [ "name", "icon", "slug", "description", "isPublic" ] } } } }, "createTask_request_body": { "content": { "application/json": { "schema": { "type": "object", "properties": { "title": { "type": "string" }, "description": { "type": "string" }, "dueDate": { "type": "string" }, "priority": { "type": "string" }, "status": { "type": "string" }, "userId": { "type": "string" } }, "required": [ "title", "description", "priority", "status" ] } } } }, "updateTask_request_body": { "content": { "application/json": { "schema": { "type": "object", "properties": { "title": { "type": "string" }, "description": { "type": "string" }, "dueDate": { "type": "string" }, "priority": { "type": "string" }, "status": { "type": "string" }, "projectId": { "type": "string" }, "position": { "type": "number" }, "userId": { "type": "string" } }, "required": [ "title", "description", "priority", "status", "projectId", "position" ] } } } }, "importTasks_request_body": { "content": { "application/json": { "schema": { "type": "object", "properties": { "tasks": { "type": "array", "items": { "type": "object", "properties": { "title": { "type": "string" }, "description": { "type": "string" }, "status": { "type": "string" }, "priority": { "type": "string" }, "dueDate": { "type": "string" }, "userId": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "required": [ "title", "status" ] } } }, "required": [ "tasks" ] } } } }, "updateTaskStatus_request_body": { "content": { "application/json": { "schema": { "type": "object", "properties": { "status": { "type": "string" } }, "required": [ "status" ] } } } }, "updateTaskPriority_request_body": { "content": { "application/json": { "schema": { "type": "object", "properties": { "priority": { "type": "string" } }, "required": [ "priority" ] } } } }, "updateTaskAssignee_request_body": { "content": { "application/json": { "schema": { "type": "object", "properties": { "userId": { "type": "string" } }, "required": [ "userId" ] } } } }, "updateTaskDueDate_request_body": { "content": { "application/json": { "schema": { "type": "object", "properties": { "dueDate": { "type": "string" } }, "required": [] } } } }, "updateTaskTitle_request_body": { "content": { "application/json": { "schema": { "type": "object", "properties": { "title": { "type": "string" } }, "required": [ "title" ] } } } }, "updateTaskDescription_request_body": { "content": { "application/json": { "schema": { "type": "object", "properties": { "description": { "type": "string" } }, "required": [ "description" ] } } } }, "createColumn_request_body": { "content": { "application/json": { "schema": { "type": "object", "properties": { "name": { "type": "string" }, "icon": { "type": "string" }, "color": { "type": "string" }, "isFinal": { "type": "boolean" } }, "required": [ "name" ] } } } }, "reorderColumns_request_body": { "content": { "application/json": { "schema": { "type": "object", "properties": { "columns": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "position": { "type": "number" } }, "required": [ "id", "position" ] } } }, "required": [ "columns" ] } } } }, "updateColumn_request_body": { "content": { "application/json": { "schema": { "type": "object", "properties": { "name": { "type": "string" }, "icon": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "color": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "isFinal": { "type": "boolean" } }, "required": [] } } } }, "createActivity_request_body": { "content": { "application/json": { "schema": { "type": "object", "properties": { "taskId": { "type": "string" }, "userId": { "type": "string" }, "message": { "type": "string" }, "type": { "type": "string" } }, "required": [ "taskId", "userId", "message", "type" ] } } } }, "createComment_request_body": { "content": { "application/json": { "schema": { "type": "object", "properties": { "taskId": { "type": "string" }, "comment": { "type": "string" } }, "required": [ "taskId", "comment" ] } } } }, "updateComment_request_body": { "content": { "application/json": { "schema": { "type": "object", "properties": { "activityId": { "type": "string" }, "comment": { "type": "string" } }, "required": [ "activityId", "comment" ] } } } }, "deleteComment_request_body": { "content": { "application/json": { "schema": { "type": "object", "properties": { "activityId": { "type": "string" } }, "required": [ "activityId" ] } } } }, "updateTimeEntry_request_body": { "content": { "application/json": { "schema": { "type": "object", "properties": { "startTime": { "type": "string" }, "endTime": { "type": "string" }, "description": { "type": "string" } }, "required": [ "startTime" ] } } } }, "createTimeEntry_request_body": { "content": { "application/json": { "schema": { "type": "object", "properties": { "taskId": { "type": "string" }, "startTime": { "type": "string" }, "endTime": { "type": "string" }, "description": { "type": "string" } }, "required": [ "taskId", "startTime" ] } } } }, "createLabel_request_body": { "content": { "application/json": { "schema": { "type": "object", "properties": { "name": { "type": "string" }, "color": { "type": "string" }, "workspaceId": { "type": "string" }, "taskId": { "type": "string" } }, "required": [ "name", "color", "workspaceId" ] } } } }, "updateLabel_request_body": { "content": { "application/json": { "schema": { "type": "object", "properties": { "name": { "type": "string" }, "color": { "type": "string" } }, "required": [ "name", "color" ] } } } }, "createNotification_request_body": { "content": { "application/json": { "schema": { "type": "object", "properties": { "userId": { "type": "string" }, "title": { "type": "string" }, "message": { "type": "string" }, "type": { "type": "string" }, "relatedEntityId": { "type": "string" }, "relatedEntityType": { "type": "string" } }, "required": [ "userId", "title", "message", "type" ] } } } }, "verifyGitHubInstallation_request_body": { "content": { "application/json": { "schema": { "type": "object", "properties": { "repositoryOwner": { "type": "string", "minLength": 1 }, "repositoryName": { "type": "string", "minLength": 1 } }, "required": [ "repositoryOwner", "repositoryName" ] } } } }, "createGitHubIntegration_request_body": { "content": { "application/json": { "schema": { "type": "object", "properties": { "repositoryOwner": { "type": "string", "minLength": 1 }, "repositoryName": { "type": "string", "minLength": 1 } }, "required": [ "repositoryOwner", "repositoryName" ] } } } }, "updateGitHubIntegration_request_body": { "content": { "application/json": { "schema": { "type": "object", "properties": { "isActive": { "type": "boolean" } }, "required": [] } } } }, "importGitHubIssues_request_body": { "content": { "application/json": { "schema": { "type": "object", "properties": { "projectId": { "type": "string" } }, "required": [ "projectId" ] } } } }, "upsertWorkflowRule_request_body": { "content": { "application/json": { "schema": { "type": "object", "properties": { "integrationType": { "type": "string" }, "eventType": { "type": "string" }, "columnId": { "type": "string" } }, "required": [ "integrationType", "eventType", "columnId" ] } } } }, "post_organization_create_request_body": { "required": true, "content": { "application/json": { "schema": { "type": "object", "properties": { "name": { "type": "string", "description": "The name of the organization" }, "slug": { "type": "string", "description": "The slug of the organization" }, "userId": { "type": [ "string", "null" ], "description": "The user id of the organization creator. If not provided, the current user will be used. Should only be used by admins or when called by the server. server-only. Eg: \"user-id\"" }, "logo": { "type": [ "string", "null" ], "description": "The logo of the organization" }, "metadata": { "type": [ "string", "null" ], "description": "The metadata of the organization" }, "keepCurrentActiveOrganization": { "type": [ "boolean", "null" ], "description": "Whether to keep the current active organization active after creating a new one. Eg: true" }, "description": { "type": [ "string", "null" ] } }, "required": [ "name", "slug" ] } } } }, "post_organization_update_request_body": { "required": true, "content": { "application/json": { "schema": { "type": "object", "properties": { "data": { "type": "object", "properties": { "description": { "type": [ "string", "null" ] }, "name": { "type": [ "string", "null" ], "description": "The name of the organization" }, "slug": { "type": [ "string", "null" ], "description": "The slug of the organization" }, "logo": { "type": [ "string", "null" ], "description": "The logo of the organization" }, "metadata": { "type": [ "string", "null" ], "description": "The metadata of the organization" } } }, "organizationId": { "type": [ "string", "null" ], "description": "The organization ID. Eg: \"org-id\"" } }, "required": [ "data" ] } } } }, "post_organization_delete_request_body": { "required": true, "content": { "application/json": { "schema": { "type": "object", "properties": { "organizationId": { "type": "string", "description": "The organization id to delete" } }, "required": [ "organizationId" ] } } } }, "setActiveOrganization_request_body": { "required": true, "content": { "application/json": { "schema": { "type": "object", "properties": { "organizationId": { "type": [ "string", "null" ] }, "organizationSlug": { "type": [ "string", "null" ], "description": "The organization slug to set as active. It can be null to unset the active organization if organizationId is not provided. Eg: \"org-slug\"" } }, "required": [] } } } }, "createOrganizationInvitation_request_body": { "required": true, "content": { "application/json": { "schema": { "type": "object", "properties": { "email": { "type": "string", "description": "The email address of the user to invite" }, "role": { "type": "string", "description": "The role(s) to assign to the user. It can be `admin`, `member`, owner. Eg: \"member\"" }, "organizationId": { "type": [ "string", "null" ], "description": "The organization ID to invite the user to" }, "resend": { "type": [ "boolean", "null" ], "description": "Resend the invitation email, if the user is already invited. Eg: true" }, "teamId": { "type": "string" } }, "required": [ "email", "role", "teamId" ] } } } }, "post_organization_cancel_invitation_request_body": { "required": true, "content": { "application/json": { "schema": { "type": "object", "properties": { "invitationId": { "type": "string", "description": "The ID of the invitation to cancel" } }, "required": [ "invitationId" ] } } } }, "post_organization_accept_invitation_request_body": { "required": true, "content": { "application/json": { "schema": { "type": "object", "properties": { "invitationId": { "type": "string", "description": "The ID of the invitation to accept" } }, "required": [ "invitationId" ] } } } }, "post_organization_reject_invitation_request_body": { "required": true, "content": { "application/json": { "schema": { "type": "object", "properties": { "invitationId": { "type": "string", "description": "The ID of the invitation to reject" } }, "required": [ "invitationId" ] } } } }, "post_organization_check_slug_request_body": { "required": true, "content": { "application/json": { "schema": { "type": "object", "properties": { "slug": { "type": "string", "description": "The organization slug to check. Eg: \"my-org\"" } }, "required": [ "slug" ] } } } }, "post_organization_remove_member_request_body": { "required": true, "content": { "application/json": { "schema": { "type": "object", "properties": { "memberIdOrEmail": { "type": "string", "description": "The ID or email of the member to remove" }, "organizationId": { "type": [ "string", "null" ], "description": "The ID of the organization to remove the member from. If not provided, the active organization will be used. Eg: \"org-id\"" } }, "required": [ "memberIdOrEmail" ] } } } }, "updateOrganizationMemberRole_request_body": { "required": true, "content": { "application/json": { "schema": { "type": "object", "properties": { "role": { "type": "string", "description": "The new role to be applied. This can be a string or array of strings representing the roles. Eg: [\"admin\", \"sale\"]" }, "memberId": { "type": "string", "description": "The member id to apply the role update to. Eg: \"member-id\"" }, "organizationId": { "type": [ "string", "null" ], "description": "An optional organization ID which the member is a part of to apply the role update. If not provided, you must provide session headers to get the active organization. Eg: \"organization-id\"" } }, "required": [ "role", "memberId" ] } } } }, "post_organization_leave_request_body": { "required": true, "content": { "application/json": { "schema": { "type": "object", "properties": { "organizationId": { "type": "string", "description": "The organization Id for the member to leave. Eg: \"organization-id\"" } }, "required": [ "organizationId" ] } } } }, "post_organization_create_team_request_body": { "required": true, "content": { "application/json": { "schema": { "type": "object", "properties": { "name": { "type": "string", "description": "The name of the team. Eg: \"my-team\"" }, "organizationId": { "type": [ "string", "null" ], "description": "The organization ID which the team will be created in. Defaults to the active organization. Eg: \"organization-id\"" } }, "required": [ "name" ] } } } }, "post_organization_remove_team_request_body": { "required": true, "content": { "application/json": { "schema": { "type": "object", "properties": { "teamId": { "type": "string", "description": "The team ID of the team to remove. Eg: \"team-id\"" }, "organizationId": { "type": [ "string", "null" ], "description": "The organization ID which the team falls under. If not provided, it will default to the user's active organization. Eg: \"organization-id\"" } }, "required": [ "teamId" ] } } } }, "post_organization_update_team_request_body": { "required": true, "content": { "application/json": { "schema": { "type": "object", "properties": { "teamId": { "type": "string", "description": "The ID of the team to be updated. Eg: \"team-id\"" }, "data": { "type": "object", "properties": { "id": { "type": [ "string", "null" ], "default": "icQPfLVaGoklNpvoH3pn9AZiFFsoFAqD" }, "name": { "type": [ "string", "null" ] }, "organizationId": { "type": [ "string", "null" ] }, "createdAt": { "type": [ "string", "null" ] }, "updatedAt": { "type": [ "string", "null" ] } } } }, "required": [ "teamId", "data" ] } } } }, "post_organization_set_active_team_request_body": { "required": true, "content": { "application/json": { "schema": { "type": "object", "properties": { "teamId": { "type": [ "string", "null" ] } }, "required": [] } } } }, "post_organization_add_team_member_request_body": { "required": true, "content": { "application/json": { "schema": { "type": "object", "properties": { "teamId": { "type": "string", "description": "The team the user should be a member of." }, "userId": { "type": "string", "description": "The user Id which represents the user to be added as a member." } }, "required": [ "teamId", "userId" ] } } } }, "post_organization_remove_team_member_request_body": { "required": true, "content": { "application/json": { "schema": { "type": "object", "properties": { "teamId": { "type": "string", "description": "The team the user should be removed from." }, "userId": { "type": "string", "description": "The user which should be removed from the team." } }, "required": [ "teamId", "userId" ] } } } }, "post_organization_has_permission_request_body": { "content": { "application/json": { "schema": { "type": "object", "properties": { "permission": { "type": "object", "description": "The permission to check", "deprecated": true }, "permissions": { "type": "object", "description": "The permission to check" } }, "required": [ "permissions" ] } } } } }, "schemas": { "Organization": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "slug": { "type": "string" }, "logo": { "type": "string" }, "createdAt": { "type": "string", "format": "date-time" }, "metadata": { "type": "string" }, "description": { "type": "string" } }, "required": [ "name", "slug", "createdAt" ] }, "Team": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "organizationId": { "type": "string" }, "createdAt": { "type": "string", "format": "date-time" }, "updatedAt": { "type": "string", "format": "date-time" } }, "required": [ "name", "organizationId", "createdAt" ] } } }, "security": [ { "bearerAuth": [] } ], "paths": { "/config": { "get": { "operationId": "getConfig", "tags": [ "Config" ], "description": "Get application settings and configuration", "responses": { "200": { "$ref": "#/components/responses/getConfig_200_response" } } } }, "/project": { "get": { "operationId": "listProjects", "tags": [ "Projects" ], "description": "Get all projects in a workspace", "responses": { "200": { "$ref": "#/components/responses/listProjects_200_response" } }, "parameters": [ { "$ref": "#/components/parameters/workspaceId_query_spec_paths_project_get_parameters_0" } ] }, "post": { "operationId": "createProject", "tags": [ "Projects" ], "description": "Create a new project in a workspace", "responses": { "200": { "$ref": "#/components/responses/createProject_200_response" } }, "requestBody": { "$ref": "#/components/requestBodies/createProject_request_body" } } }, "/project/{id}": { "get": { "operationId": "getProject", "tags": [ "Projects" ], "description": "Get a specific project by ID", "responses": { "200": { "$ref": "#/components/responses/getProject_200_response" } }, "parameters": [ { "$ref": "#/components/parameters/id_path_spec_paths_project_id_get_parameters_0" }, { "$ref": "#/components/parameters/workspaceId_query_spec_paths_project_id_get_parameters_1" } ] }, "put": { "operationId": "updateProject", "tags": [ "Projects" ], "description": "Update an existing project", "responses": { "200": { "$ref": "#/components/responses/updateProject_200_response" } }, "parameters": [ { "$ref": "#/components/parameters/id_path_spec_paths_project_id_put_parameters_0" } ], "requestBody": { "$ref": "#/components/requestBodies/updateProject_request_body" } }, "delete": { "operationId": "deleteProject", "tags": [ "Projects" ], "description": "Delete a project by ID", "responses": { "200": { "$ref": "#/components/responses/deleteProject_200_response" } }, "parameters": [ { "$ref": "#/components/parameters/id_path_spec_paths_project_id_delete_parameters_0" } ] } }, "/task/tasks/{projectId}": { "get": { "operationId": "listTasks", "tags": [ "Tasks" ], "description": "Get all tasks for a specific project", "responses": { "200": { "$ref": "#/components/responses/listTasks_200_response" } }, "parameters": [ { "$ref": "#/components/parameters/projectId_path_spec_paths_task_tasks_projectId_get_parameters_0" } ] } }, "/task/{projectId}": { "post": { "operationId": "createTask", "tags": [ "Tasks" ], "description": "Create a new task in a project", "responses": { "200": { "$ref": "#/components/responses/createTask_200_response" } }, "requestBody": { "$ref": "#/components/requestBodies/createTask_request_body" }, "parameters": [ { "$ref": "#/components/parameters/projectId_path_spec_paths_task_projectId_post_parameters_0" } ] } }, "/task/{id}": { "get": { "operationId": "getTask", "tags": [ "Tasks" ], "description": "Get a specific task by ID", "responses": { "200": { "$ref": "#/components/responses/getTask_200_response" } }, "parameters": [ { "$ref": "#/components/parameters/id_path_spec_paths_task_id_get_parameters_0" } ] }, "put": { "operationId": "updateTask", "tags": [ "Tasks" ], "description": "Update all fields of a task", "responses": { "200": { "$ref": "#/components/responses/updateTask_200_response" } }, "parameters": [ { "$ref": "#/components/parameters/id_path_spec_paths_task_id_put_parameters_0" } ], "requestBody": { "$ref": "#/components/requestBodies/updateTask_request_body" } }, "delete": { "operationId": "deleteTask", "tags": [ "Tasks" ], "description": "Delete a task by ID", "responses": { "200": { "$ref": "#/components/responses/deleteTask_200_response" } }, "parameters": [ { "$ref": "#/components/parameters/id_path_spec_paths_task_id_delete_parameters_0" } ] } }, "/task/export/{projectId}": { "get": { "operationId": "exportTasks", "tags": [ "Tasks" ], "description": "Export all tasks from a project", "responses": { "200": { "$ref": "#/components/responses/exportTasks_200_response" } }, "parameters": [ { "$ref": "#/components/parameters/projectId_path_spec_paths_task_export_projectId_get_parameters_0" } ] } }, "/task/import/{projectId}": { "post": { "operationId": "importTasks", "tags": [ "Tasks" ], "description": "Import multiple tasks into a project", "responses": { "200": { "$ref": "#/components/responses/importTasks_200_response" } }, "parameters": [ { "$ref": "#/components/parameters/projectId_path_spec_paths_task_import_projectId_post_parameters_0" } ], "requestBody": { "$ref": "#/components/requestBodies/importTasks_request_body" } } }, "/task/status/{id}": { "put": { "operationId": "updateTaskStatus", "tags": [ "Tasks" ], "description": "Update only the status of a task", "responses": { "200": { "$ref": "#/components/responses/updateTaskStatus_200_response" } }, "parameters": [ { "$ref": "#/components/parameters/id_path_spec_paths_task_status_id_put_parameters_0" } ], "requestBody": { "$ref": "#/components/requestBodies/updateTaskStatus_request_body" } } }, "/task/priority/{id}": { "put": { "operationId": "updateTaskPriority", "tags": [ "Tasks" ], "description": "Update only the priority of a task", "responses": { "200": { "$ref": "#/components/responses/updateTaskPriority_200_response" } }, "parameters": [ { "$ref": "#/components/parameters/id_path_spec_paths_task_priority_id_put_parameters_0" } ], "requestBody": { "$ref": "#/components/requestBodies/updateTaskPriority_request_body" } } }, "/task/assignee/{id}": { "put": { "operationId": "updateTaskAssignee", "tags": [ "Tasks" ], "description": "Assign or unassign a task to a user", "responses": { "200": { "$ref": "#/components/responses/updateTaskAssignee_200_response" } }, "parameters": [ { "$ref": "#/components/parameters/id_path_spec_paths_task_assignee_id_put_parameters_0" } ], "requestBody": { "$ref": "#/components/requestBodies/updateTaskAssignee_request_body" } } }, "/task/due-date/{id}": { "put": { "operationId": "updateTaskDueDate", "tags": [ "Tasks" ], "description": "Update only the due date of a task", "responses": { "200": { "$ref": "#/components/responses/updateTaskDueDate_200_response" } }, "parameters": [ { "$ref": "#/components/parameters/id_path_spec_paths_task_due_date_id_put_parameters_0" } ], "requestBody": { "$ref": "#/components/requestBodies/updateTaskDueDate_request_body" } } }, "/task/title/{id}": { "put": { "operationId": "updateTaskTitle", "tags": [ "Tasks" ], "description": "Update only the title of a task", "responses": { "200": { "$ref": "#/components/responses/updateTaskTitle_200_response" } }, "parameters": [ { "$ref": "#/components/parameters/id_path_spec_paths_task_title_id_put_parameters_0" } ], "requestBody": { "$ref": "#/components/requestBodies/updateTaskTitle_request_body" } } }, "/task/description/{id}": { "put": { "operationId": "updateTaskDescription", "tags": [ "Tasks" ], "description": "Update only the description of a task", "responses": { "200": { "$ref": "#/components/responses/updateTaskDescription_200_response" } }, "parameters": [ { "$ref": "#/components/parameters/id_path_spec_paths_task_description_id_put_parameters_0" } ], "requestBody": { "$ref": "#/components/requestBodies/updateTaskDescription_request_body" } } }, "/column/{projectId}": { "get": { "operationId": "getColumns", "tags": [ "Columns" ], "description": "Get all columns for a project", "responses": { "200": { "$ref": "#/components/responses/getColumns_200_response" } }, "parameters": [ { "$ref": "#/components/parameters/projectId_path_spec_paths_column_projectId_get_parameters_0" } ] }, "post": { "operationId": "createColumn", "tags": [ "Columns" ], "description": "Create a new column in a project", "responses": { "200": { "$ref": "#/components/responses/createColumn_200_response" } }, "parameters": [ { "$ref": "#/components/parameters/projectId_path_spec_paths_column_projectId_post_parameters_0" } ], "requestBody": { "$ref": "#/components/requestBodies/createColumn_request_body" } } }, "/column/reorder/{projectId}": { "put": { "operationId": "reorderColumns", "tags": [ "Columns" ], "description": "Reorder columns in a project", "responses": { "200": { "$ref": "#/components/responses/reorderColumns_200_response" } }, "parameters": [ { "$ref": "#/components/parameters/projectId_path_spec_paths_column_reorder_projectId_put_parameters_0" } ], "requestBody": { "$ref": "#/components/requestBodies/reorderColumns_request_body" } } }, "/column/{id}": { "put": { "operationId": "updateColumn", "tags": [ "Columns" ], "description": "Update a column", "responses": { "200": { "$ref": "#/components/responses/updateColumn_200_response" } }, "parameters": [ { "$ref": "#/components/parameters/id_path_spec_paths_column_id_put_parameters_0" } ], "requestBody": { "$ref": "#/components/requestBodies/updateColumn_request_body" } }, "delete": { "operationId": "deleteColumn", "tags": [ "Columns" ], "description": "Delete a column", "responses": { "200": { "$ref": "#/components/responses/deleteColumn_200_response" } }, "parameters": [ { "$ref": "#/components/parameters/id_path_spec_paths_column_id_delete_parameters_0" } ] } }, "/activity/{taskId}": { "get": { "operationId": "getActivities", "tags": [ "Activity" ], "description": "Get all activities for a specific task", "responses": { "200": { "$ref": "#/components/responses/getActivities_200_response" } }, "parameters": [ { "$ref": "#/components/parameters/taskId_path_spec_paths_activity_taskId_get_parameters_0" } ] } }, "/activity/create": { "post": { "operationId": "createActivity", "tags": [ "Activity" ], "description": "Create a new activity (system-generated event)", "responses": { "200": { "$ref": "#/components/responses/createActivity_200_response" } }, "requestBody": { "$ref": "#/components/requestBodies/createActivity_request_body" } } }, "/activity/comment": { "post": { "operationId": "createComment", "tags": [ "Activity" ], "description": "Create a new comment on a task", "responses": { "200": { "$ref": "#/components/responses/createComment_200_response" } }, "requestBody": { "$ref": "#/components/requestBodies/createComment_request_body" } }, "put": { "operationId": "updateComment", "tags": [ "Activity" ], "description": "Update an existing comment", "responses": { "200": { "$ref": "#/components/responses/updateComment_200_response" } }, "requestBody": { "$ref": "#/components/requestBodies/updateComment_request_body" } }, "delete": { "operationId": "deleteComment", "tags": [ "Activity" ], "description": "Delete a comment", "responses": { "200": { "$ref": "#/components/responses/deleteComment_200_response" } }, "requestBody": { "$ref": "#/components/requestBodies/deleteComment_request_body" } } }, "/time-entry/task/{taskId}": { "get": { "operationId": "getTaskTimeEntries", "tags": [ "Time Entries" ], "description": "Get all time entries for a specific task", "responses": { "200": { "$ref": "#/components/responses/getTaskTimeEntries_200_response" } }, "parameters": [ { "$ref": "#/components/parameters/taskId_path_spec_paths_time_entry_task_taskId_get_parameters_0" } ] } }, "/time-entry/{id}": { "get": { "operationId": "getTimeEntry", "tags": [ "Time Entries" ], "description": "Get a specific time entry by ID", "responses": { "200": { "$ref": "#/components/responses/getTimeEntry_200_response" } }, "parameters": [ { "$ref": "#/components/parameters/id_path_spec_paths_time_entry_id_get_parameters_0" } ] }, "put": { "operationId": "updateTimeEntry", "tags": [ "Time Entries" ], "description": "Update an existing time entry", "responses": { "200": { "$ref": "#/components/responses/updateTimeEntry_200_response" } }, "parameters": [ { "$ref": "#/components/parameters/id_path_spec_paths_time_entry_id_put_parameters_0" } ], "requestBody": { "$ref": "#/components/requestBodies/updateTimeEntry_request_body" } } }, "/time-entry": { "post": { "operationId": "createTimeEntry", "tags": [ "Time Entries" ], "description": "Create a new time entry for a task", "responses": { "200": { "$ref": "#/components/responses/createTimeEntry_200_response" } }, "requestBody": { "$ref": "#/components/requestBodies/createTimeEntry_request_body" } } }, "/label/task/{taskId}": { "get": { "operationId": "getTaskLabels", "tags": [ "Labels" ], "description": "Get all labels assigned to a specific task", "responses": { "200": { "$ref": "#/components/responses/getTaskLabels_200_response" } }, "parameters": [ { "$ref": "#/components/parameters/taskId_path_spec_paths_label_task_taskId_get_parameters_0" } ] } }, "/label/workspace/{workspaceId}": { "get": { "operationId": "getWorkspaceLabels", "tags": [ "Labels" ], "description": "Get all labels for a specific workspace", "responses": { "200": { "$ref": "#/components/responses/getWorkspaceLabels_200_response" } }, "parameters": [ { "$ref": "#/components/parameters/workspaceId_path_spec_paths_label_workspace_workspaceId_get_parameters_0" } ] } }, "/label": { "post": { "operationId": "createLabel", "tags": [ "Labels" ], "description": "Create a new label in a workspace", "responses": { "200": { "$ref": "#/components/responses/createLabel_200_response" } }, "requestBody": { "$ref": "#/components/requestBodies/createLabel_request_body" } } }, "/label/{id}": { "get": { "operationId": "getLabel", "tags": [ "Labels" ], "description": "Get a specific label by ID", "responses": { "200": { "$ref": "#/components/responses/getLabel_200_response" } }, "parameters": [ { "$ref": "#/components/parameters/id_path_spec_paths_label_id_get_parameters_0" } ] }, "put": { "operationId": "updateLabel", "tags": [ "Labels" ], "description": "Update an existing label", "responses": { "200": { "$ref": "#/components/responses/updateLabel_200_response" } }, "parameters": [ { "$ref": "#/components/parameters/id_path_spec_paths_label_id_put_parameters_0" } ], "requestBody": { "$ref": "#/components/requestBodies/updateLabel_request_body" } }, "delete": { "operationId": "deleteLabel", "tags": [ "Labels" ], "description": "Delete a label by ID", "responses": { "200": { "$ref": "#/components/responses/deleteLabel_200_response" } }, "parameters": [ { "$ref": "#/components/parameters/id_path_spec_paths_label_id_delete_parameters_0" } ] } }, "/notification": { "get": { "operationId": "listNotifications", "tags": [ "Notifications" ], "description": "Get all notifications for the current user", "responses": { "200": { "$ref": "#/components/responses/listNotifications_200_response" } } }, "post": { "operationId": "createNotification", "tags": [ "Notifications" ], "description": "Create a new notification for a user", "responses": { "200": { "$ref": "#/components/responses/createNotification_200_response" } }, "requestBody": { "$ref": "#/components/requestBodies/createNotification_request_body" } } }, "/notification/{id}/read": { "patch": { "operationId": "markNotificationAsRead", "tags": [ "Notifications" ], "description": "Mark a specific notification as read", "responses": { "200": { "$ref": "#/components/responses/markNotificationAsRead_200_response" } }, "parameters": [ { "$ref": "#/components/parameters/id_path_spec_paths_notification_id_read_patch_parameters_0" } ] } }, "/notification/read-all": { "patch": { "operationId": "markAllNotificationsAsRead", "tags": [ "Notifications" ], "description": "Mark all notifications as read for the current user", "responses": { "200": { "$ref": "#/components/responses/markAllNotificationsAsRead_200_response" } } } }, "/notification/clear-all": { "delete": { "operationId": "clearAllNotifications", "tags": [ "Notifications" ], "description": "Clear all notifications for the current user", "responses": { "200": { "$ref": "#/components/responses/clearAllNotifications_200_response" } } } }, "/search": { "get": { "operationId": "globalSearch", "tags": [ "Search" ], "description": "Search across tasks, projects, workspaces, comments, and activities", "responses": { "200": { "$ref": "#/components/responses/globalSearch_200_response" } }, "parameters": [ { "$ref": "#/components/parameters/q_query_spec_paths_search_get_parameters_0" }, { "$ref": "#/components/parameters/type_query_spec_paths_search_get_parameters_1" }, { "$ref": "#/components/parameters/workspaceId_query_spec_paths_search_get_parameters_2" }, { "$ref": "#/components/parameters/projectId_query_spec_paths_search_get_parameters_3" }, { "$ref": "#/components/parameters/limit_query_spec_paths_search_get_parameters_4" }, { "$ref": "#/components/parameters/userEmail_query_spec_paths_search_get_parameters_5" } ] } }, "/github-integration/app-info": { "get": { "operationId": "getGitHubAppInfo", "tags": [ "GitHub" ], "description": "Get GitHub app configuration information", "responses": { "200": { "$ref": "#/components/responses/getGitHubAppInfo_200_response" } } } }, "/github-integration/repositories": { "get": { "operationId": "listGitHubRepositories", "tags": [ "GitHub" ], "description": "List all accessible GitHub repositories", "responses": { "200": { "$ref": "#/components/responses/listGitHubRepositories_200_response" } } } }, "/github-integration/verify": { "post": { "operationId": "verifyGitHubInstallation", "tags": [ "GitHub" ], "description": "Verify GitHub app installation for a repository", "responses": { "200": { "$ref": "#/components/responses/verifyGitHubInstallation_200_response" } }, "requestBody": { "$ref": "#/components/requestBodies/verifyGitHubInstallation_request_body" } } }, "/github-integration/project/{projectId}": { "get": { "operationId": "getGitHubIntegration", "tags": [ "GitHub" ], "description": "Get GitHub integration for a project", "responses": { "200": { "$ref": "#/components/responses/getGitHubIntegration_200_response" } }, "parameters": [ { "$ref": "#/components/parameters/projectId_path_spec_paths_github_integration_project_projectId_get_parameters_0" } ] }, "post": { "operationId": "createGitHubIntegration", "tags": [ "GitHub" ], "description": "Create a new GitHub integration for a project", "responses": { "200": { "$ref": "#/components/responses/createGitHubIntegration_200_response" } }, "parameters": [ { "$ref": "#/components/parameters/projectId_path_spec_paths_github_integration_project_projectId_post_parameters_0" } ], "requestBody": { "$ref": "#/components/requestBodies/createGitHubIntegration_request_body" } }, "patch": { "operationId": "updateGitHubIntegration", "tags": [ "GitHub" ], "description": "Update GitHub integration settings", "responses": { "200": { "$ref": "#/components/responses/updateGitHubIntegration_200_response" }, "404": { "$ref": "#/components/responses/updateGitHubIntegration_404_response" } }, "parameters": [ { "$ref": "#/components/parameters/projectId_path_spec_paths_github_integration_project_projectId_patch_parameters_0" } ], "requestBody": { "$ref": "#/components/requestBodies/updateGitHubIntegration_request_body" } }, "delete": { "operationId": "deleteGitHubIntegration", "tags": [ "GitHub" ], "description": "Delete GitHub integration for a project", "responses": { "200": { "$ref": "#/components/responses/deleteGitHubIntegration_200_response" } }, "parameters": [ { "$ref": "#/components/parameters/projectId_path_spec_paths_github_integration_project_projectId_delete_parameters_0" } ] } }, "/github-integration/import-issues": { "post": { "operationId": "importGitHubIssues", "tags": [ "GitHub" ], "description": "Import GitHub issues as tasks", "responses": { "200": { "$ref": "#/components/responses/importGitHubIssues_200_response" } }, "requestBody": { "$ref": "#/components/requestBodies/importGitHubIssues_request_body" } } }, "/external-link/task/{taskId}": { "get": { "operationId": "getExternalLinksByTask", "tags": [ "External Links" ], "description": "Get all external links for a task", "responses": { "200": { "$ref": "#/components/responses/getExternalLinksByTask_200_response" } }, "parameters": [ { "$ref": "#/components/parameters/taskId_path_spec_paths_external_link_task_taskId_get_parameters_0" } ] } }, "/workflow-rule/{projectId}": { "get": { "operationId": "getWorkflowRules", "tags": [ "Workflow Rules" ], "description": "Get all workflow rules for a project", "responses": { "200": { "$ref": "#/components/responses/getWorkflowRules_200_response" } }, "parameters": [ { "$ref": "#/components/parameters/projectId_path_spec_paths_workflow_rule_projectId_get_parameters_0" } ] }, "put": { "operationId": "upsertWorkflowRule", "tags": [ "Workflow Rules" ], "description": "Create or update a workflow rule", "responses": { "200": { "$ref": "#/components/responses/upsertWorkflowRule_200_response" } }, "parameters": [ { "$ref": "#/components/parameters/projectId_path_spec_paths_workflow_rule_projectId_put_parameters_0" } ], "requestBody": { "$ref": "#/components/requestBodies/upsertWorkflowRule_request_body" } } }, "/workflow-rule/{id}": { "delete": { "operationId": "deleteWorkflowRule", "tags": [ "Workflow Rules" ], "description": "Delete a workflow rule", "responses": { "200": { "$ref": "#/components/responses/deleteWorkflowRule_200_response" } }, "parameters": [ { "$ref": "#/components/parameters/id_path_spec_paths_workflow_rule_id_delete_parameters_0" } ] } }, "/invitation/pending": { "get": { "operationId": "getUserPendingInvitations", "tags": [ "Invitations" ], "description": "Get all pending invitations for the current user", "responses": { "200": { "$ref": "#/components/responses/getUserPendingInvitations_200_response" } } } }, "/invitation/{id}": { "get": { "operationId": "getInvitationDetails", "tags": [ "Invitations" ], "description": "Get details of a specific invitation by ID", "responses": { "200": { "$ref": "#/components/responses/getInvitationDetails_200_response" } }, "parameters": [ { "$ref": "#/components/parameters/id_path_spec_paths_invitation_id_get_parameters_0" } ] } }, "/organization/create": { "post": { "tags": [ "Organization Management" ], "description": "Create an organization", "security": [ { "bearerAuth": [] } ], "parameters": [], "requestBody": { "$ref": "#/components/requestBodies/post_organization_create_request_body" }, "responses": { "200": { "$ref": "#/components/responses/post_organization_create_200_response" }, "400": { "$ref": "#/components/responses/post_organization_create_400_response" }, "401": { "$ref": "#/components/responses/post_organization_create_401_response" }, "403": { "$ref": "#/components/responses/post_organization_create_403_response" }, "404": { "$ref": "#/components/responses/post_organization_create_404_response" }, "429": { "$ref": "#/components/responses/post_organization_create_429_response" }, "500": { "$ref": "#/components/responses/post_organization_create_500_response" } }, "operationId": "createOrganization", "summary": "Create Organization" } }, "/organization/update": { "post": { "tags": [ "Organization Management" ], "description": "Update an organization", "security": [ { "bearerAuth": [] } ], "parameters": [], "requestBody": { "$ref": "#/components/requestBodies/post_organization_update_request_body" }, "responses": { "200": { "$ref": "#/components/responses/post_organization_update_200_response" }, "400": { "$ref": "#/components/responses/post_organization_update_400_response" }, "401": { "$ref": "#/components/responses/post_organization_update_401_response" }, "403": { "$ref": "#/components/responses/post_organization_update_403_response" }, "404": { "$ref": "#/components/responses/post_organization_update_404_response" }, "429": { "$ref": "#/components/responses/post_organization_update_429_response" }, "500": { "$ref": "#/components/responses/post_organization_update_500_response" } }, "operationId": "updateOrganization", "summary": "Update Organization" } }, "/organization/delete": { "post": { "tags": [ "Organization Management" ], "description": "Delete an organization", "security": [ { "bearerAuth": [] } ], "parameters": [], "requestBody": { "$ref": "#/components/requestBodies/post_organization_delete_request_body" }, "responses": { "200": { "$ref": "#/components/responses/post_organization_delete_200_response" }, "400": { "$ref": "#/components/responses/post_organization_delete_400_response" }, "401": { "$ref": "#/components/responses/post_organization_delete_401_response" }, "403": { "$ref": "#/components/responses/post_organization_delete_403_response" }, "404": { "$ref": "#/components/responses/post_organization_delete_404_response" }, "429": { "$ref": "#/components/responses/post_organization_delete_429_response" }, "500": { "$ref": "#/components/responses/post_organization_delete_500_response" } }, "operationId": "deleteOrganization", "summary": "Delete Organization" } }, "/organization/set-active": { "post": { "tags": [ "Organization Management" ], "description": "Set the active organization", "operationId": "setOrganizationActive", "security": [ { "bearerAuth": [] } ], "parameters": [], "requestBody": { "$ref": "#/components/requestBodies/setActiveOrganization_request_body" }, "responses": { "200": { "$ref": "#/components/responses/setActiveOrganization_200_response" }, "400": { "$ref": "#/components/responses/setActiveOrganization_400_response" }, "401": { "$ref": "#/components/responses/setActiveOrganization_401_response" }, "403": { "$ref": "#/components/responses/setActiveOrganization_403_response" }, "404": { "$ref": "#/components/responses/setActiveOrganization_404_response" }, "429": { "$ref": "#/components/responses/setActiveOrganization_429_response" }, "500": { "$ref": "#/components/responses/setActiveOrganization_500_response" } }, "summary": "Set Organization Active" } }, "/organization/get-full-organization": { "get": { "tags": [ "Organization Management" ], "description": "Get the full organization", "operationId": "getOrganizationFullOrganization", "security": [ { "bearerAuth": [] } ], "parameters": [], "responses": { "200": { "$ref": "#/components/responses/getOrganization_200_response" }, "400": { "$ref": "#/components/responses/getOrganization_400_response" }, "401": { "$ref": "#/components/responses/getOrganization_401_response" }, "403": { "$ref": "#/components/responses/getOrganization_403_response" }, "404": { "$ref": "#/components/responses/getOrganization_404_response" }, "429": { "$ref": "#/components/responses/getOrganization_429_response" }, "500": { "$ref": "#/components/responses/getOrganization_500_response" } }, "summary": "Get Organization Full Organization" } }, "/organization/list": { "get": { "tags": [ "Organization Management" ], "description": "List all organizations", "security": [ { "bearerAuth": [] } ], "parameters": [], "responses": { "200": { "$ref": "#/components/responses/get_organization_list_200_response" }, "400": { "$ref": "#/components/responses/get_organization_list_400_response" }, "401": { "$ref": "#/components/responses/get_organization_list_401_response" }, "403": { "$ref": "#/components/responses/get_organization_list_403_response" }, "404": { "$ref": "#/components/responses/get_organization_list_404_response" }, "429": { "$ref": "#/components/responses/get_organization_list_429_response" }, "500": { "$ref": "#/components/responses/get_organization_list_500_response" } }, "operationId": "listOrganization", "summary": "List Organization" } }, "/organization/invite-member": { "post": { "tags": [ "Organization Management" ], "description": "Create an invitation to an organization", "operationId": "inviteOrganizationMember", "security": [ { "bearerAuth": [] } ], "parameters": [], "requestBody": { "$ref": "#/components/requestBodies/createOrganizationInvitation_request_body" }, "responses": { "200": { "$ref": "#/components/responses/createOrganizationInvitation_200_response" }, "400": { "$ref": "#/components/responses/createOrganizationInvitation_400_response" }, "401": { "$ref": "#/components/responses/createOrganizationInvitation_401_response" }, "403": { "$ref": "#/components/responses/createOrganizationInvitation_403_response" }, "404": { "$ref": "#/components/responses/createOrganizationInvitation_404_response" }, "429": { "$ref": "#/components/responses/createOrganizationInvitation_429_response" }, "500": { "$ref": "#/components/responses/createOrganizationInvitation_500_response" } }, "summary": "Invite Organization Member" } }, "/organization/cancel-invitation": { "post": { "tags": [ "Organization Management" ], "security": [ { "bearerAuth": [] } ], "parameters": [], "requestBody": { "$ref": "#/components/requestBodies/post_organization_cancel_invitation_request_body" }, "responses": { "400": { "$ref": "#/components/responses/post_organization_cancel_invitation_400_response" }, "401": { "$ref": "#/components/responses/post_organization_cancel_invitation_401_response" }, "403": { "$ref": "#/components/responses/post_organization_cancel_invitation_403_response" }, "404": { "$ref": "#/components/responses/post_organization_cancel_invitation_404_response" }, "429": { "$ref": "#/components/responses/post_organization_cancel_invitation_429_response" }, "500": { "$ref": "#/components/responses/post_organization_cancel_invitation_500_response" } }, "operationId": "cancelOrganizationInvitation", "summary": "Cancel Organization Invitation" } }, "/organization/accept-invitation": { "post": { "tags": [ "Organization Management" ], "description": "Accept an invitation to an organization", "security": [ { "bearerAuth": [] } ], "parameters": [], "requestBody": { "$ref": "#/components/requestBodies/post_organization_accept_invitation_request_body" }, "responses": { "200": { "$ref": "#/components/responses/post_organization_accept_invitation_200_response" }, "400": { "$ref": "#/components/responses/post_organization_accept_invitation_400_response" }, "401": { "$ref": "#/components/responses/post_organization_accept_invitation_401_response" }, "403": { "$ref": "#/components/responses/post_organization_accept_invitation_403_response" }, "404": { "$ref": "#/components/responses/post_organization_accept_invitation_404_response" }, "429": { "$ref": "#/components/responses/post_organization_accept_invitation_429_response" }, "500": { "$ref": "#/components/responses/post_organization_accept_invitation_500_response" } }, "operationId": "acceptOrganizationInvitation", "summary": "Accept Organization Invitation" } }, "/organization/get-invitation": { "get": { "tags": [ "Organization Management" ], "description": "Get an invitation by ID", "security": [ { "bearerAuth": [] } ], "parameters": [ { "$ref": "#/components/parameters/id_query_spec_paths_organization_get_invitation_get_parameters_0" } ], "responses": { "200": { "$ref": "#/components/responses/get_organization_get_invitation_200_response" }, "400": { "$ref": "#/components/responses/get_organization_get_invitation_400_response" }, "401": { "$ref": "#/components/responses/get_organization_get_invitation_401_response" }, "403": { "$ref": "#/components/responses/get_organization_get_invitation_403_response" }, "404": { "$ref": "#/components/responses/get_organization_get_invitation_404_response" }, "429": { "$ref": "#/components/responses/get_organization_get_invitation_429_response" }, "500": { "$ref": "#/components/responses/get_organization_get_invitation_500_response" } }, "operationId": "getOrganizationInvitation", "summary": "Get Organization Invitation" } }, "/organization/reject-invitation": { "post": { "tags": [ "Organization Management" ], "description": "Reject an invitation to an organization", "security": [ { "bearerAuth": [] } ], "parameters": [], "requestBody": { "$ref": "#/components/requestBodies/post_organization_reject_invitation_request_body" }, "responses": { "200": { "$ref": "#/components/responses/post_organization_reject_invitation_200_response" }, "400": { "$ref": "#/components/responses/post_organization_reject_invitation_400_response" }, "401": { "$ref": "#/components/responses/post_organization_reject_invitation_401_response" }, "403": { "$ref": "#/components/responses/post_organization_reject_invitation_403_response" }, "404": { "$ref": "#/components/responses/post_organization_reject_invitation_404_response" }, "429": { "$ref": "#/components/responses/post_organization_reject_invitation_429_response" }, "500": { "$ref": "#/components/responses/post_organization_reject_invitation_500_response" } }, "operationId": "rejectOrganizationInvitation", "summary": "Reject Organization Invitation" } }, "/organization/list-invitations": { "get": { "tags": [ "Organization Management" ], "security": [ { "bearerAuth": [] } ], "parameters": [], "responses": { "400": { "$ref": "#/components/responses/get_organization_list_invitations_400_response" }, "401": { "$ref": "#/components/responses/get_organization_list_invitations_401_response" }, "403": { "$ref": "#/components/responses/get_organization_list_invitations_403_response" }, "404": { "$ref": "#/components/responses/get_organization_list_invitations_404_response" }, "429": { "$ref": "#/components/responses/get_organization_list_invitations_429_response" }, "500": { "$ref": "#/components/responses/get_organization_list_invitations_500_response" } }, "operationId": "listOrganizationInvitations", "summary": "List Organization Invitations" } }, "/organization/get-active-member": { "get": { "tags": [ "Organization Management" ], "description": "Get the member details of the active organization", "security": [ { "bearerAuth": [] } ], "parameters": [], "responses": { "200": { "$ref": "#/components/responses/get_organization_get_active_member_200_response" }, "400": { "$ref": "#/components/responses/get_organization_get_active_member_400_response" }, "401": { "$ref": "#/components/responses/get_organization_get_active_member_401_response" }, "403": { "$ref": "#/components/responses/get_organization_get_active_member_403_response" }, "404": { "$ref": "#/components/responses/get_organization_get_active_member_404_response" }, "429": { "$ref": "#/components/responses/get_organization_get_active_member_429_response" }, "500": { "$ref": "#/components/responses/get_organization_get_active_member_500_response" } }, "operationId": "getOrganizationActiveMember", "summary": "Get Organization Active Member" } }, "/organization/check-slug": { "post": { "tags": [ "Organization Management" ], "security": [ { "bearerAuth": [] } ], "parameters": [], "requestBody": { "$ref": "#/components/requestBodies/post_organization_check_slug_request_body" }, "responses": { "400": { "$ref": "#/components/responses/post_organization_check_slug_400_response" }, "401": { "$ref": "#/components/responses/post_organization_check_slug_401_response" }, "403": { "$ref": "#/components/responses/post_organization_check_slug_403_response" }, "404": { "$ref": "#/components/responses/post_organization_check_slug_404_response" }, "429": { "$ref": "#/components/responses/post_organization_check_slug_429_response" }, "500": { "$ref": "#/components/responses/post_organization_check_slug_500_response" } }, "operationId": "checkOrganizationSlug", "summary": "Check Organization Slug" } }, "/organization/remove-member": { "post": { "tags": [ "Organization Management" ], "description": "Remove a member from an organization", "security": [ { "bearerAuth": [] } ], "parameters": [], "requestBody": { "$ref": "#/components/requestBodies/post_organization_remove_member_request_body" }, "responses": { "200": { "$ref": "#/components/responses/post_organization_remove_member_200_response" }, "400": { "$ref": "#/components/responses/post_organization_remove_member_400_response" }, "401": { "$ref": "#/components/responses/post_organization_remove_member_401_response" }, "403": { "$ref": "#/components/responses/post_organization_remove_member_403_response" }, "404": { "$ref": "#/components/responses/post_organization_remove_member_404_response" }, "429": { "$ref": "#/components/responses/post_organization_remove_member_429_response" }, "500": { "$ref": "#/components/responses/post_organization_remove_member_500_response" } }, "operationId": "removeOrganizationMember", "summary": "Remove Organization Member" } }, "/organization/update-member-role": { "post": { "tags": [ "Organization Management" ], "description": "Update the role of a member in an organization", "operationId": "updateOrganizationMemberRole", "security": [ { "bearerAuth": [] } ], "parameters": [], "requestBody": { "$ref": "#/components/requestBodies/updateOrganizationMemberRole_request_body" }, "responses": { "200": { "$ref": "#/components/responses/updateOrganizationMemberRole_200_response" }, "400": { "$ref": "#/components/responses/updateOrganizationMemberRole_400_response" }, "401": { "$ref": "#/components/responses/updateOrganizationMemberRole_401_response" }, "403": { "$ref": "#/components/responses/updateOrganizationMemberRole_403_response" }, "404": { "$ref": "#/components/responses/updateOrganizationMemberRole_404_response" }, "429": { "$ref": "#/components/responses/updateOrganizationMemberRole_429_response" }, "500": { "$ref": "#/components/responses/updateOrganizationMemberRole_500_response" } }, "summary": "Update Organization Member Role" } }, "/organization/leave": { "post": { "tags": [ "Organization Management" ], "security": [ { "bearerAuth": [] } ], "parameters": [], "requestBody": { "$ref": "#/components/requestBodies/post_organization_leave_request_body" }, "responses": { "400": { "$ref": "#/components/responses/post_organization_leave_400_response" }, "401": { "$ref": "#/components/responses/post_organization_leave_401_response" }, "403": { "$ref": "#/components/responses/post_organization_leave_403_response" }, "404": { "$ref": "#/components/responses/post_organization_leave_404_response" }, "429": { "$ref": "#/components/responses/post_organization_leave_429_response" }, "500": { "$ref": "#/components/responses/post_organization_leave_500_response" } }, "operationId": "leaveOrganization", "summary": "Leave Organization" } }, "/organization/list-user-invitations": { "get": { "tags": [ "Organization Management" ], "description": "List all invitations a user has received", "security": [ { "bearerAuth": [] } ], "parameters": [], "responses": { "200": { "$ref": "#/components/responses/get_organization_list_user_invitations_200_response" }, "400": { "$ref": "#/components/responses/get_organization_list_user_invitations_400_response" }, "401": { "$ref": "#/components/responses/get_organization_list_user_invitations_401_response" }, "403": { "$ref": "#/components/responses/get_organization_list_user_invitations_403_response" }, "404": { "$ref": "#/components/responses/get_organization_list_user_invitations_404_response" }, "429": { "$ref": "#/components/responses/get_organization_list_user_invitations_429_response" }, "500": { "$ref": "#/components/responses/get_organization_list_user_invitations_500_response" } }, "operationId": "listOrganizationUserInvitations", "summary": "List Organization User Invitations" } }, "/organization/list-members": { "get": { "tags": [ "Organization Management" ], "security": [ { "bearerAuth": [] } ], "parameters": [], "responses": { "400": { "$ref": "#/components/responses/get_organization_list_members_400_response" }, "401": { "$ref": "#/components/responses/get_organization_list_members_401_response" }, "403": { "$ref": "#/components/responses/get_organization_list_members_403_response" }, "404": { "$ref": "#/components/responses/get_organization_list_members_404_response" }, "429": { "$ref": "#/components/responses/get_organization_list_members_429_response" }, "500": { "$ref": "#/components/responses/get_organization_list_members_500_response" } }, "operationId": "listOrganizationMembers", "summary": "List Organization Members" } }, "/organization/get-active-member-role": { "get": { "tags": [ "Organization Management" ], "security": [ { "bearerAuth": [] } ], "parameters": [], "responses": { "400": { "$ref": "#/components/responses/get_organization_get_active_member_role_400_response" }, "401": { "$ref": "#/components/responses/get_organization_get_active_member_role_401_response" }, "403": { "$ref": "#/components/responses/get_organization_get_active_member_role_403_response" }, "404": { "$ref": "#/components/responses/get_organization_get_active_member_role_404_response" }, "429": { "$ref": "#/components/responses/get_organization_get_active_member_role_429_response" }, "500": { "$ref": "#/components/responses/get_organization_get_active_member_role_500_response" } }, "operationId": "getOrganizationActiveMemberRole", "summary": "Get Organization Active Member Role" } }, "/organization/create-team": { "post": { "tags": [ "Organization Management" ], "description": "Create a new team within an organization", "security": [ { "bearerAuth": [] } ], "parameters": [], "requestBody": { "$ref": "#/components/requestBodies/post_organization_create_team_request_body" }, "responses": { "200": { "$ref": "#/components/responses/post_organization_create_team_200_response" }, "400": { "$ref": "#/components/responses/post_organization_create_team_400_response" }, "401": { "$ref": "#/components/responses/post_organization_create_team_401_response" }, "403": { "$ref": "#/components/responses/post_organization_create_team_403_response" }, "404": { "$ref": "#/components/responses/post_organization_create_team_404_response" }, "429": { "$ref": "#/components/responses/post_organization_create_team_429_response" }, "500": { "$ref": "#/components/responses/post_organization_create_team_500_response" } }, "operationId": "createOrganizationTeam", "summary": "Create Organization Team" } }, "/organization/list-teams": { "get": { "tags": [ "Organization Management" ], "description": "List all teams in an organization", "security": [ { "bearerAuth": [] } ], "parameters": [], "responses": { "200": { "$ref": "#/components/responses/get_organization_list_teams_200_response" }, "400": { "$ref": "#/components/responses/get_organization_list_teams_400_response" }, "401": { "$ref": "#/components/responses/get_organization_list_teams_401_response" }, "403": { "$ref": "#/components/responses/get_organization_list_teams_403_response" }, "404": { "$ref": "#/components/responses/get_organization_list_teams_404_response" }, "429": { "$ref": "#/components/responses/get_organization_list_teams_429_response" }, "500": { "$ref": "#/components/responses/get_organization_list_teams_500_response" } }, "operationId": "listOrganizationTeams", "summary": "List Organization Teams" } }, "/organization/remove-team": { "post": { "tags": [ "Organization Management" ], "description": "Remove a team from an organization", "security": [ { "bearerAuth": [] } ], "parameters": [], "requestBody": { "$ref": "#/components/requestBodies/post_organization_remove_team_request_body" }, "responses": { "200": { "$ref": "#/components/responses/post_organization_remove_team_200_response" }, "400": { "$ref": "#/components/responses/post_organization_remove_team_400_response" }, "401": { "$ref": "#/components/responses/post_organization_remove_team_401_response" }, "403": { "$ref": "#/components/responses/post_organization_remove_team_403_response" }, "404": { "$ref": "#/components/responses/post_organization_remove_team_404_response" }, "429": { "$ref": "#/components/responses/post_organization_remove_team_429_response" }, "500": { "$ref": "#/components/responses/post_organization_remove_team_500_response" } }, "operationId": "removeOrganizationTeam", "summary": "Remove Organization Team" } }, "/organization/update-team": { "post": { "tags": [ "Organization Management" ], "description": "Update an existing team in an organization", "security": [ { "bearerAuth": [] } ], "parameters": [], "requestBody": { "$ref": "#/components/requestBodies/post_organization_update_team_request_body" }, "responses": { "200": { "$ref": "#/components/responses/post_organization_update_team_200_response" }, "400": { "$ref": "#/components/responses/post_organization_update_team_400_response" }, "401": { "$ref": "#/components/responses/post_organization_update_team_401_response" }, "403": { "$ref": "#/components/responses/post_organization_update_team_403_response" }, "404": { "$ref": "#/components/responses/post_organization_update_team_404_response" }, "429": { "$ref": "#/components/responses/post_organization_update_team_429_response" }, "500": { "$ref": "#/components/responses/post_organization_update_team_500_response" } }, "operationId": "updateOrganizationTeam", "summary": "Update Organization Team" } }, "/organization/set-active-team": { "post": { "tags": [ "Organization Management" ], "description": "Set the active team", "security": [ { "bearerAuth": [] } ], "parameters": [], "requestBody": { "$ref": "#/components/requestBodies/post_organization_set_active_team_request_body" }, "responses": { "200": { "$ref": "#/components/responses/post_organization_set_active_team_200_response" }, "400": { "$ref": "#/components/responses/post_organization_set_active_team_400_response" }, "401": { "$ref": "#/components/responses/post_organization_set_active_team_401_response" }, "403": { "$ref": "#/components/responses/post_organization_set_active_team_403_response" }, "404": { "$ref": "#/components/responses/post_organization_set_active_team_404_response" }, "429": { "$ref": "#/components/responses/post_organization_set_active_team_429_response" }, "500": { "$ref": "#/components/responses/post_organization_set_active_team_500_response" } }, "operationId": "setOrganizationActiveTeam", "summary": "Set Organization Active Team" } }, "/organization/list-user-teams": { "get": { "tags": [ "Organization Management" ], "description": "List all teams that the current user is a part of.", "security": [ { "bearerAuth": [] } ], "parameters": [], "responses": { "200": { "$ref": "#/components/responses/get_organization_list_user_teams_200_response" }, "400": { "$ref": "#/components/responses/get_organization_list_user_teams_400_response" }, "401": { "$ref": "#/components/responses/get_organization_list_user_teams_401_response" }, "403": { "$ref": "#/components/responses/get_organization_list_user_teams_403_response" }, "404": { "$ref": "#/components/responses/get_organization_list_user_teams_404_response" }, "429": { "$ref": "#/components/responses/get_organization_list_user_teams_429_response" }, "500": { "$ref": "#/components/responses/get_organization_list_user_teams_500_response" } }, "operationId": "listOrganizationUserTeams", "summary": "List Organization User Teams" } }, "/organization/list-team-members": { "get": { "tags": [ "Organization Management" ], "description": "List the members of the given team.", "security": [ { "bearerAuth": [] } ], "parameters": [], "responses": { "200": { "$ref": "#/components/responses/get_organization_list_team_members_200_response" }, "400": { "$ref": "#/components/responses/get_organization_list_team_members_400_response" }, "401": { "$ref": "#/components/responses/get_organization_list_team_members_401_response" }, "403": { "$ref": "#/components/responses/get_organization_list_team_members_403_response" }, "404": { "$ref": "#/components/responses/get_organization_list_team_members_404_response" }, "429": { "$ref": "#/components/responses/get_organization_list_team_members_429_response" }, "500": { "$ref": "#/components/responses/get_organization_list_team_members_500_response" } }, "operationId": "listOrganizationTeamMembers", "summary": "List Organization Team Members" } }, "/organization/add-team-member": { "post": { "tags": [ "Organization Management" ], "description": "The newly created member", "security": [ { "bearerAuth": [] } ], "parameters": [], "requestBody": { "$ref": "#/components/requestBodies/post_organization_add_team_member_request_body" }, "responses": { "200": { "$ref": "#/components/responses/post_organization_add_team_member_200_response" }, "400": { "$ref": "#/components/responses/post_organization_add_team_member_400_response" }, "401": { "$ref": "#/components/responses/post_organization_add_team_member_401_response" }, "403": { "$ref": "#/components/responses/post_organization_add_team_member_403_response" }, "404": { "$ref": "#/components/responses/post_organization_add_team_member_404_response" }, "429": { "$ref": "#/components/responses/post_organization_add_team_member_429_response" }, "500": { "$ref": "#/components/responses/post_organization_add_team_member_500_response" } }, "operationId": "addOrganizationTeamMember", "summary": "Add Organization Team Member" } }, "/organization/remove-team-member": { "post": { "tags": [ "Organization Management" ], "description": "Remove a member from a team", "security": [ { "bearerAuth": [] } ], "parameters": [], "requestBody": { "$ref": "#/components/requestBodies/post_organization_remove_team_member_request_body" }, "responses": { "200": { "$ref": "#/components/responses/post_organization_remove_team_member_200_response" }, "400": { "$ref": "#/components/responses/post_organization_remove_team_member_400_response" }, "401": { "$ref": "#/components/responses/post_organization_remove_team_member_401_response" }, "403": { "$ref": "#/components/responses/post_organization_remove_team_member_403_response" }, "404": { "$ref": "#/components/responses/post_organization_remove_team_member_404_response" }, "429": { "$ref": "#/components/responses/post_organization_remove_team_member_429_response" }, "500": { "$ref": "#/components/responses/post_organization_remove_team_member_500_response" } }, "operationId": "removeOrganizationTeamMember", "summary": "Remove Organization Team Member" } }, "/organization/has-permission": { "post": { "tags": [ "Organization Management" ], "description": "Check if the user has permission", "security": [ { "bearerAuth": [] } ], "parameters": [], "requestBody": { "$ref": "#/components/requestBodies/post_organization_has_permission_request_body" }, "responses": { "200": { "$ref": "#/components/responses/post_organization_has_permission_200_response" }, "400": { "$ref": "#/components/responses/post_organization_has_permission_400_response" }, "401": { "$ref": "#/components/responses/post_organization_has_permission_401_response" }, "403": { "$ref": "#/components/responses/post_organization_has_permission_403_response" }, "404": { "$ref": "#/components/responses/post_organization_has_permission_404_response" }, "429": { "$ref": "#/components/responses/post_organization_has_permission_429_response" }, "500": { "$ref": "#/components/responses/post_organization_has_permission_500_response" } }, "operationId": "hasOrganizationPermission", "summary": "Check Organization Permission" } } }, "tags": [ { "name": "Default", "description": "Default endpoints that are included with Better Auth by default. These endpoints are not part of any plugin." }, { "name": "Organization Management" } ] }