import requests
response = requests.patch(
"https://api.atomscale.ai/projects/d290f1ee-6c54-4b01-90e6-d701748f0851",
headers={
"X-API-KEY": "YOUR_API_KEY",
"Content-Type": "application/json"
},
json={
"name": "InGaN LED Development (2024)"
}
)
project_id = response.json()