Update Status comment

put

/appstore/publisher/v1/applications/{listingVersionId}/comments/{id}

Update status comment.

Request

Supported Media Types
Path Parameters
Body ()
update the status comment.
Root Schema : StatusComment
Type: object
Show Source
Back to Top

Response

Supported Media Types

200 Response

Successful Operation
Body ()
Root Schema : acknowledgement
Type: object
Show Source

400 Response

Bad Request

401 Response

Not Authorized

404 Response

Entity Not Found

500 Response

System Error
Back to Top

Examples

The following example updates an status comment, by submitting a PUT request on the REST resource using cURL.

cURL Example

curl -X PUT -H "X-Oracle-UserId: partner-email" -H "Content-Type: application/json" -H "Authorization: Bearer Access-token" -d JSON-data-as-shown-in-following-example "https://ocm-apis.cloud.oracle.com/appstore/publisher/v1/applications/8574381/comments/8574507"

Request Header

X-Oracle-UserId: fname.lname@oracle.com 
Authorization: Bearer Access-token 
Content-Type: application/json

Request Body

{
  "statusNote" : "Status Changed" 
}

HTTP Status Code:

200 OK

JSON Response:

{
  "message": " Status Comment updated successfully.",
  "entityId": "8574507"
}
Back to Top