GET v2/tasks/{id}/checklist-items

Gets all checklist items for a task.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of CheckListItem
NameDescriptionTypeAdditional information
Id

integer

None.

Name

string

None.

Notes

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "name": "sample string 2",
    "notes": "sample string 3"
  },
  {
    "id": 1,
    "name": "sample string 2",
    "notes": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfCheckListItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BAPI.Models.V2.Core">
  <CheckListItem>
    <Id>1</Id>
    <Name>sample string 2</Name>
    <Notes>sample string 3</Notes>
  </CheckListItem>
  <CheckListItem>
    <Id>1</Id>
    <Name>sample string 2</Name>
    <Notes>sample string 3</Notes>
  </CheckListItem>
</ArrayOfCheckListItem>