GET v2/tasks/{id}/contacts

Gets all task contacts.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of TaskContact
NameDescriptionTypeAdditional information
Id

Contact unique id

integer

None.

Name

Contact name

string

None.

IsRequestedBy

Says whether the contact is set as Requested By to the task

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "name": "sample string 2",
    "isRequestedBy": true
  },
  {
    "id": 1,
    "name": "sample string 2",
    "isRequestedBy": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfTaskContact xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BAPI.Models.V2.Tasks">
  <TaskContact>
    <Id>1</Id>
    <IsRequestedBy>true</IsRequestedBy>
    <Name>sample string 2</Name>
  </TaskContact>
  <TaskContact>
    <Id>1</Id>
    <IsRequestedBy>true</IsRequestedBy>
    <Name>sample string 2</Name>
  </TaskContact>
</ArrayOfTaskContact>