PUT v1/account/{id}/note/{noteid}
Update an account note for the authenticated user
Request Information
URI Parameters
| Name | Description | Type | Additional Information |
|---|---|---|---|
| id |
ID of the account you want to update the contract for |
string |
Required. |
| noteid |
ID of the note you want to update |
string |
Required. |
Body Parameters
Information about the note
UpdateAccountNoteModel| Name | Description | Type | Additional Information |
|---|---|---|---|
| NoteID |
The Note's unique identifier (Kapta) |
string |
Required. |
| Note |
The Note |
string |
None. |
| NoteType |
The type of the note Note = "N" Phone = "P" Meeting = "M" Email = "E" |
string |
None. |
| NoteSubType |
The identifier of the note sub type |
string |
None. |
| NoteTitle |
The Title of the Note |
string |
None. |
| ContactIDList |
The ContactID (Not required) |
Collection of string |
None. |
| SendToSlack |
Send note to Slack, if configured |
boolean |
None. |
| NoteDate |
Optional specified date, defaults to today |
date |
None. |
Request Formats
application/json, text/json, text/html
Sample:
{
"NoteID": "sample string 1",
"Note": "sample string 2",
"NoteType": "sample string 3",
"NoteSubType": "sample string 4",
"NoteTitle": "sample string 5",
"ContactIDList": [
"sample string 1",
"sample string 2"
],
"SendToSlack": true,
"NoteDate": "2025-12-15T20:59:49.3514046+00:00"
}
application/xml, text/xml
Sample:
<UpdateAccountNoteModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KAPTA.Domain.ViewModel.v1">
<ContactIDList xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</ContactIDList>
<Note>sample string 2</Note>
<NoteDate>2025-12-15T20:59:49.3514046+00:00</NoteDate>
<NoteID>sample string 1</NoteID>
<NoteSubType>sample string 4</NoteSubType>
<NoteTitle>sample string 5</NoteTitle>
<NoteType>sample string 3</NoteType>
<SendToSlack>true</SendToSlack>
</UpdateAccountNoteModel>
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, text/html, application/xml, text/xml
Sample:
Sample not available.