Zatomic API

Update Project

This endpoint allows you to update either the name of the project, its project brief, or both.

Endpoint
PATCH https://api.zatomic.ai/v1/projects/{projectId}

// Example
PATCH https://api.zatomic.ai/v1/projects/prj_32hbc9w4iVeyUZ1iRvjZYUrvS73

Endpoint Request

Request Properties
name
string, optional
The project name.
brief
string, optional
The project brief.
Request Body
{
   "name": "Prompt name",
   "brief": "Project brief.
}

Endpoint Response

A successful call returns a response that contains the updated project object.

HTTP Status Codes
200 OK The project was updated.
404 Not Found The project didn't exist.
500 Internal Server Error Something went wrong on Zatomic's end.