Honeytoken Notes
Update a honeytoken note
Update an existing comment on a honeytoken. Only honeytoken notes created by the current API key can be updated.
patch/v1/honeytokens/{honeytoken_id}/notes/{note_id}
Path parameters
honeytoken_idstring uuid required
The id of the honeytoken to retrieve
note_idstring uuid required
The id of the honeytoken note to update
Request body
Example request
{
"comment": "I revoked this"
}Response
The note was updated successfully.
Example response
{
"id": "1b99892e-6254-4f8a-9e98-559ed810b7da",
"honeytoken_id": "d45a123f-b15d-4fea-abf6-ff2a8479de5b",
"member_id": 38,
"api_token_id": "37d5b0d7-9f89-4b80-9070-261e26637836",
"created_at": "2019-08-22T14:15:22Z",
"comment": "I revoked this secret"
}