POST v1/accountsnotesbulk?useuserdate={useuserdate}&startdate={startdate}&enddate={enddate}

Gets a list of all account notes for the authenticated user

Request Information

URI Parameters

NameDescriptionTypeAdditional Information
UseUserDate

Get data based on user date? Defaults to created date.

boolean

Default value is False

StartDate

Starting range date for retreiving notes

date

None.

EndDate

Ending range date for retreiving notes

date

None.

Body Parameters

List of AccountIds to get notes

Collection of string

Request Formats

application/json, text/json, text/html

Sample:
[
  "sample string 1",
  "sample string 2"
]

application/xml, text/xml

Sample:
<ArrayOfstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
  <string>sample string 1</string>
  <string>sample string 2</string>
</ArrayOfstring>

Response Information

Resource Description

List of account notes

IHttpActionResult

None.

Response Formats

application/json, text/json, text/html, application/xml, text/xml

Sample:

Sample not available.