Update a Project Note
PUT {{baseUrl}}/api/ProjectNote/:noteId
Similar to other update methods in the API, excluding a property will remove it's value from the object. If you're only updating a single property, the entire model is still required.
Request Body
{"type"=>"<string>", "note"=>"<string>", "important"=>"<boolean>", "private"=>"<boolean>", "contactId"=>"<integer>"}
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
Content-Type | string |
RESPONSES
status: OK
{"id":"\u003cinteger\u003e","createDateTimeUtc":"\u003cdateTime\u003e","createdByUser":"\u003cstring\u003e","modifiedDateTimeUtc":"\u003cdateTime\u003e","modifiedByUser":"\u003cstring\u003e","createdByAvatarUrl":"\u003cstring\u003e","type":"\u003cstring\u003e","note":"\u003cstring\u003e","important":"\u003cboolean\u003e","isPrivate":"\u003cboolean\u003e","binaryPath":"\u003cstring\u003e"}