POST v1/account/{id}/note
Creates a new account note for the authenticated user
Request Information
URI Parameters
Name | Description | Type | Additional Information |
---|---|---|---|
id |
ID of the account you want to add the note to |
string |
Required. |
Body Parameters
Information about a new Note
NewAccountNoteModelName | Description | Type | Additional Information |
---|---|---|---|
Note |
The Note |
string |
Required. |
AccountID |
The Account's unique identifier (Kapta) |
string |
Required. |
NoteType |
The type of the note Note = "N" Phone = "P" Meeting = "M" Email = "E" |
string |
Required. |
NoteSubType |
The identifier of the note sub type |
string |
None. |
NoteTitle |
The Title of the Note |
string |
Required. |
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:
{ "Note": "sample string 1", "AccountID": "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-05-24T10:12:43.6972944+00:00" }
application/xml, text/xml
Sample:
<NewAccountNoteModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KAPTA.Domain.ViewModel.v1"> <AccountID>sample string 2</AccountID> <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 1</Note> <NoteDate>2025-05-24T10:12:43.6972944+00:00</NoteDate> <NoteSubType>sample string 4</NoteSubType> <NoteTitle>sample string 5</NoteTitle> <NoteType>sample string 3</NoteType> <SendToSlack>true</SendToSlack> </NewAccountNoteModel>
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, text/html, application/xml, text/xml
Sample:
Sample not available.