cURL
curl --request PUT \ --url http://localhost:8080/api/workspaces/{id}/projects/{project_id} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "name": "<string>", "description": "<string>", "status": "<string>", "priority": "<string>", "tags": [ "<string>" ] } '
{ "id": "<string>", "workspace_id": "<string>", "name": "<string>", "description": "<string>", "status": "<string>", "priority": "<string>", "tags": [ "<string>" ], "created_at": "<string>", "updated_at": "<string>" }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful Response