GET api/GetTotalHoursSpendbyDeveleper?TASK_ID={TASK_ID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
TASK_ID

integer

Required

Body Parameters

None.

Response Information

Resource Description

TotalHourSpendbydeveloperListApiResponse
NameDescriptionTypeAdditional information
status

string

None.

message

string

None.

SuntechTask

Collection of TotalHourSpendbydeveloper

None.

Response Formats

application/json, text/json

Sample:
{
  "status": "sample string 1",
  "message": "sample string 2",
  "SuntechTask": [
    {
      "TASK_DEVELOPER": "sample string 1",
      "TOTAL_HOURS_SPENT": 2
    },
    {
      "TASK_DEVELOPER": "sample string 1",
      "TOTAL_HOURS_SPENT": 2
    }
  ]
}

text/html

Sample:
{"status":"sample string 1","message":"sample string 2","SuntechTask":[{"TASK_DEVELOPER":"sample string 1","TOTAL_HOURS_SPENT":2},{"TASK_DEVELOPER":"sample string 1","TOTAL_HOURS_SPENT":2}]}

application/xml, text/xml

Sample:
<TotalHourSpendbydeveloperListApiResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SuntechSupportServices.Models.SuntechInternal.TASK">
  <SuntechTask>
    <TotalHourSpendbydeveloper>
      <TASK_DEVELOPER>sample string 1</TASK_DEVELOPER>
      <TOTAL_HOURS_SPENT>2</TOTAL_HOURS_SPENT>
    </TotalHourSpendbydeveloper>
    <TotalHourSpendbydeveloper>
      <TASK_DEVELOPER>sample string 1</TASK_DEVELOPER>
      <TOTAL_HOURS_SPENT>2</TOTAL_HOURS_SPENT>
    </TotalHourSpendbydeveloper>
  </SuntechTask>
  <message>sample string 2</message>
  <status>sample string 1</status>
</TotalHourSpendbydeveloperListApiResponse>

multipart/form-data

Sample:
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="status"

sample string 1
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="message"

sample string 2
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="SuntechTask[0].TASK_DEVELOPER"

sample string 1
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="SuntechTask[0].TOTAL_HOURS_SPENT"

2
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="SuntechTask[1].TASK_DEVELOPER"

sample string 1
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="SuntechTask[1].TOTAL_HOURS_SPENT"

2
--MultipartDataMediaFormatterBoundary1q2w3e--