v51

latestOpenAPI 3.0.0raw.githubusercontent.com2026-08-01703301564.3 KB
Projects

Update a project by ID

Partially updates a project and its member list. Only provided fields are updated.

patch/projects/{id}

Path parameters

idinteger required
Example:1

The numeric project ID

Request body

project_titlestring
ownerinteger
start_datestring date-time
geographyinteger
ai_risk_classification'Prohibited' | 'High risk' | 'Limited risk' | 'Minimal risk'

EU AI Act risk classification level

type_of_high_risk_role'Deployer' | 'Provider' | 'Distributor' | 'Importer' | 'Product manufacturer' | 'Authorized representative'

Role of the organization under the EU AI Act for high-risk systems

goalstring nullable
target_industrystring nullable
descriptionstring nullable
status'Not started' | 'In progress' | 'Under review' | 'Completed' | 'Closed' | 'On hold' | 'Rejected'

Current lifecycle status of the project

last_updatedstring date-time
last_updated_byinteger
membersinteger[]

Example request

{
  "members": [
    2,
    3,
    5
  ]
}

Response

Project updated successfully

messagestring

Example response

{
  "message": "Accepted",
  "data": {
    "id": 42,
    "uc_id": "UC-7",
    "project_title": "Customer Support Chatbot",
    "owner": 1,
    "geography": 1,
    "framework": [
      {
        "name": "EU AI Act"
      }
    ]
  }
}