Skip to main content
PUT
/
api
/
ProjectNote
/
{noteId}
Update a Project Note
curl --request PUT \
  --url https://api.virtuoussoftware.com/api/ProjectNote/{noteId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "type": "<string>",
  "note": "<string>",
  "important": "<boolean>",
  "private": "<boolean>",
  "contactId": "<integer>"
}
'
{
  "id": "<integer>",
  "createDateTimeUtc": "<dateTime>",
  "createdByUser": "<string>",
  "modifiedDateTimeUtc": "<dateTime>",
  "modifiedByUser": "<string>",
  "createdByAvatarUrl": "<string>",
  "type": "<string>",
  "note": "<string>",
  "important": "<boolean>",
  "isPrivate": "<boolean>",
  "binaryPath": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

noteId
string
required

(Required) The note identifier.

Body

application/json
type
string
note
string
important
string
private
string
contactId
string

Response

OK

id
string
createDateTimeUtc
string
createdByUser
string
modifiedDateTimeUtc
string
modifiedByUser
string
createdByAvatarUrl
string
type
string
note
string
important
string
isPrivate
string
binaryPath
string
Last modified on April 24, 2026