Updates a project
PUT /v1/project/{projectID}
Summary
Updates a project.
Details
Request body: JSON object.
The update path primarily supports changing the project name.
Authentication
No operation-level security requirement is documented here.
Parameters
| Name | In | Type | Required | Description | Example |
|---|---|---|---|---|---|
| projectID | path | integer (int64) | Yes | The project ID. | 1 |
Request Body
Required: Yes
application/json
key(integer (int64), optional)projectName(string, optional)description(string, optional)userGroupID(integer (int64), optional)deviceGroupID(integer (int64), optional)conferenceURL(string, optional)creationDate(string (date-time), optional)
Example
{
"key": 301,
"projectName": "RemoteWorker",
"description": "Example description",
"userGroupID": 1,
"deviceGroupID": 1,
"conferenceURL": "https://api.actionstreamer.com/example",
"creationDate": "2026-03-30T12:00:00.0000000Z"
}
Responses
200
Success. No response body.
No response body schema documented.