Small Improvements · Example Payload

Updatecommentusingput Example

PUT /v2/praise/{praiseId}/comments/{commentId}

praise-resource

Updatecommentusingput Example is an example object payload from Small Improvements, with 9 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

summaryoperationIdmethodpathtagsdescriptionparametersrequestBodyresponse

Example Payload

Raw ↑
{
  "summary": "updateComment",
  "operationId": "updateCommentUsingPUT",
  "method": "PUT",
  "path": "/v2/praise/{praiseId}/comments/{commentId}",
  "tags": [
    "praise-resource"
  ],
  "description": "PUT /v2/praise/{praiseId}/comments/{commentId}",
  "parameters": {
    "commentId": "<value>",
    "praiseId": "<value>"
  },
  "requestBody": {
    "description": "comment",
    "required": true
  },
  "response": {
    "status": 200,
    "description": "OK"
  }
}