This endpoint will add a comment to a change request
POST<your-unleash-url>/api/admin/projects/:projectId/change-requests/:id/comments
This endpoint will add a comment to a change request for the user making the request.
Request
Responses
- 204
This response has no body.
Authorization: Authorization
name: Authorizationtype: apiKeyin: headerdescription: API key needed to access this API
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L '<your-unleash-url>/api/admin/projects/:projectId/change-requests/:id/comments' \
-H 'Content-Type: application/json' \
-H 'Authorization: <Authorization>' \
-d '{
"text": "This is a comment"
}'
ResponseClear