Update a project
Updates an existing project. Set the columns to change (e.g. Name, ProjectCategoryId) and identify the project with ProjectIdOrKey in WITH.
UPDATE Projects
SET Name = 'My Test Kanban Project'
,ProjectCategoryId = 1
WITH (ProjectIdOrKey = 'MYPRJCT', Output=1, ContinueOn404Error=0)