GET api/TaskNotes/{AppID}/{TaskID}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
AppID | integer |
Required |
|
TaskID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of TaskNotesName | Description | Type | Additional 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": 6.1, "CreatedDate": "sample string 7" }, { "strTaskNote": "sample string 1", "intTimeRec": 2.1, "isBillable": true, "name": "sample string 4", "photo": "sample string 5", "TimeRecMins": 6.1, "CreatedDate": "sample string 7" } ]
text/html
Sample:
[{"strTaskNote":"sample string 1","intTimeRec":2.1,"isBillable":true,"name":"sample string 4","photo":"sample string 5","TimeRecMins":6.1,"CreatedDate":"sample string 7"},{"strTaskNote":"sample string 1","intTimeRec":2.1,"isBillable":true,"name":"sample string 4","photo":"sample string 5","TimeRecMins":6.1,"CreatedDate":"sample string 7"}]
application/xml, text/xml
Sample:
<ArrayOfTaskNotes xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CCAPI.Models.CRMAPI.Models"> <TaskNotes> <CreatedDate>sample string 7</CreatedDate> <TimeRecMins>6.1</TimeRecMins> <intTimeRec>2.1</intTimeRec> <isBillable>true</isBillable> <name>sample string 4</name> <photo>sample string 5</photo> <strTaskNote>sample string 1</strTaskNote> </TaskNotes> <TaskNotes> <CreatedDate>sample string 7</CreatedDate> <TimeRecMins>6.1</TimeRecMins> <intTimeRec>2.1</intTimeRec> <isBillable>true</isBillable> <name>sample string 4</name> <photo>sample string 5</photo> <strTaskNote>sample string 1</strTaskNote> </TaskNotes> </ArrayOfTaskNotes>