logo
Projects

update

put
https://api.groundx.ai/api/v1/project/{projectId}

Rename a project

Interact with the "Request Body" below to explore the arguments of this function. Enter your GroundX API key to send a request directly from this web page. Select your language of choice to structure a code snippet based on your specified arguments.

Execute an API Request

Path
projectIdintegerrequired

The projectId of the project to update.

Request Body
newNamestringrequired

The new name of the project being renamed.

Authorization
Request
Installation
$
npm install groundx-typescript-sdk
1
Loading...

Response fields

object
projectobject
1
{
2
"project": {
3
"buckets": [
4
{
5
"bucketId": 0,
6
"created": "2023-10-03T08:59:39.312Z",
7
"fileCount": 0,
8
"fileSize": "3.1GB",
9
"name": "string",
10
"updated": "2023-10-03T08:59:39.312Z"
11
}
12
],
13
"created": "2023-10-03T08:59:39.312Z",
14
"fileCount": 0,
15
"fileSize": "3.1GB",
16
"projectId": 0,
17
"name": "string",
18
"updated": "2023-10-03T08:59:39.312Z"
19
}
20
}