ModifyProject Method
Description
Updates an existing project.
HTTP Request
PUT https://api.skeddly.com/api/Projects/<id>
URL Parameters
Id
ID of the project.
Type: string
Required: Yes
Body
The body is a JSON structure with the following properties.
name
Updated name for the project.
Type: string
Required: Yes
Returns
A Project object.
Sample Request
PUT /api/Projects/proj-00000001 HTTP/1.1
Host: api.skeddly.com
Authorization: AccessKey <api key>
Content-Type: application/json
{
"name": "My Project New Name"
}
Sample Response
{
"projectId": "proj-12345678",
"name": "My Project New Name",
"status": "active",
"isDefault": false,
"createdDate": "2022-12-26T12:00:00:Z",
"lastModifiedDate": "2023-01-26T12:00:00:Z",
"lastModifiedBy": "u-12345678"
}
Last updated