This endpoint will update the custom title of a change request
PUT <your-unleash-url>/api/admin/projects/:projectId/change-requests/:id/title
Authorization
name: Authorizationtype: apiKeyin: header
Change requests get a default title e.g. Change Request #1. This endpoint allows to make the title more meaningful and describe the intent behind the Change Request
Request
Path Parameters
- projectId string required
- id string required
Responses
- 204
This response has no body.
Authorization
name: Authorizationtype: apiKeyin: header
Request
Request
curl / cURL
curl -L -X PUT '<your-unleash-url>/api/admin/projects/:projectId/change-requests/:id/title' \
-H 'Authorization: <API_KEY_VALUE>'
python / requests
curl -L -X PUT '<your-unleash-url>/api/admin/projects/:projectId/change-requests/:id/title' \
-H 'Authorization: <API_KEY_VALUE>'
go / native
curl -L -X PUT '<your-unleash-url>/api/admin/projects/:projectId/change-requests/:id/title' \
-H 'Authorization: <API_KEY_VALUE>'
nodejs / axios
curl -L -X PUT '<your-unleash-url>/api/admin/projects/:projectId/change-requests/:id/title' \
-H 'Authorization: <API_KEY_VALUE>'
ruby / Net::HTTP
curl -L -X PUT '<your-unleash-url>/api/admin/projects/:projectId/change-requests/:id/title' \
-H 'Authorization: <API_KEY_VALUE>'
csharp / RestSharp
curl -L -X PUT '<your-unleash-url>/api/admin/projects/:projectId/change-requests/:id/title' \
-H 'Authorization: <API_KEY_VALUE>'
php / cURL
curl -L -X PUT '<your-unleash-url>/api/admin/projects/:projectId/change-requests/:id/title' \
-H 'Authorization: <API_KEY_VALUE>'
java / OkHttp
curl -L -X PUT '<your-unleash-url>/api/admin/projects/:projectId/change-requests/:id/title' \
-H 'Authorization: <API_KEY_VALUE>'
powershell / RestMethod
curl -L -X PUT '<your-unleash-url>/api/admin/projects/:projectId/change-requests/:id/title' \
-H 'Authorization: <API_KEY_VALUE>'