GET api/TaskNote/{SiteURL}/{TaskID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
SiteURL

string

Required

TaskID

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of TaskNotes
NameDescriptionTypeAdditional information
strTaskNote

string

None.

intTimeRec

decimal number

None.

isBillable

boolean

None.

name

string

None.

photo

string

None.

TimeRecMins

decimal number

None.

CreatedDate

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "strTaskNote": "sample string 1",
    "intTimeRec": 2.1,
    "isBillable": true,
    "name": "sample string 4",
    "photo": "sample string 5",
    "TimeRecMins": 126.0,
    "CreatedDate": "01/01/0001 12:00 AM"
  },
  {
    "strTaskNote": "sample string 1",
    "intTimeRec": 2.1,
    "isBillable": true,
    "name": "sample string 4",
    "photo": "sample string 5",
    "TimeRecMins": 126.0,
    "CreatedDate": "01/01/0001 12:00 AM"
  }
]

text/html

Sample:
[{"strTaskNote":"sample string 1","intTimeRec":2.1,"isBillable":true,"name":"sample string 4","photo":"sample string 5","TimeRecMins":126.0,"CreatedDate":"01/01/0001 12:00 AM"},{"strTaskNote":"sample string 1","intTimeRec":2.1,"isBillable":true,"name":"sample string 4","photo":"sample string 5","TimeRecMins":126.0,"CreatedDate":"01/01/0001 12:00 AM"}]

application/xml, text/xml

Sample:
<ArrayOfTaskNotes xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CRMAPI.Models">
  <TaskNotes>
    <intTimeRec>2.1</intTimeRec>
    <isBillable>true</isBillable>
    <name>sample string 4</name>
    <photo>sample string 5</photo>
    <strTaskNote>sample string 1</strTaskNote>
  </TaskNotes>
  <TaskNotes>
    <intTimeRec>2.1</intTimeRec>
    <isBillable>true</isBillable>
    <name>sample string 4</name>
    <photo>sample string 5</photo>
    <strTaskNote>sample string 1</strTaskNote>
  </TaskNotes>
</ArrayOfTaskNotes>