Public Secret Incident Notes
Update a public secret incident note
Update an existing comment on a public secret incident. Only incident notes created by the current API key can be updated.
patch/v1/public-incidents/secrets/{incident_id}/notes/{note_id}
Path parameters
incident_idinteger required
The id of the incident to retrieve
note_idinteger required
The id of the incident note to update
Request body
Example request
{
"comment": "I revoked this secret"
}Response
The note was updated successfully.
Example response
{
"id": 17,
"incident_id": 42,
"member_id": 38,
"api_token_id": "3220d951-00ce-446c-ac90-9822f0f9b71e",
"created_at": "2019-08-22T14:15:22Z",
"comment": "I revoked this secret"
}