GET api/GetTaskDetails?MID={MID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
MID

integer

Required

Body Parameters

None.

Response Information

Resource Description

TaskDetailsApiResponse
NameDescriptionTypeAdditional information
status

string

None.

message

string

None.

Requirement

Collection of TaskDetails

None.

Response Formats

application/json, text/json

Sample:
{
  "status": "sample string 1",
  "message": "sample string 2",
  "Requirement": [
    {
      "TASK_DEVELOPER": "sample string 1",
      "PERCENTAGE_COMPELETED": 2,
      "TESTER": "sample string 3",
      "TC_PERCENTAGE_COMPLETED": 4,
      "DEPLOYMENT_BY": "sample string 5",
      "DEPLOYMENT_PERCENTAGE_COMPLETED": 6
    },
    {
      "TASK_DEVELOPER": "sample string 1",
      "PERCENTAGE_COMPELETED": 2,
      "TESTER": "sample string 3",
      "TC_PERCENTAGE_COMPLETED": 4,
      "DEPLOYMENT_BY": "sample string 5",
      "DEPLOYMENT_PERCENTAGE_COMPLETED": 6
    }
  ]
}

text/html

Sample:
{"status":"sample string 1","message":"sample string 2","Requirement":[{"TASK_DEVELOPER":"sample string 1","PERCENTAGE_COMPELETED":2,"TESTER":"sample string 3","TC_PERCENTAGE_COMPLETED":4,"DEPLOYMENT_BY":"sample string 5","DEPLOYMENT_PERCENTAGE_COMPLETED":6},{"TASK_DEVELOPER":"sample string 1","PERCENTAGE_COMPELETED":2,"TESTER":"sample string 3","TC_PERCENTAGE_COMPLETED":4,"DEPLOYMENT_BY":"sample string 5","DEPLOYMENT_PERCENTAGE_COMPLETED":6}]}

application/xml, text/xml

Sample:
<TaskDetailsApiResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SuntechSupportServices.Models.DELIVERABLES">
  <Requirement>
    <TaskDetails>
      <DEPLOYMENT_BY>sample string 5</DEPLOYMENT_BY>
      <DEPLOYMENT_PERCENTAGE_COMPLETED>6</DEPLOYMENT_PERCENTAGE_COMPLETED>
      <PERCENTAGE_COMPELETED>2</PERCENTAGE_COMPELETED>
      <TASK_DEVELOPER>sample string 1</TASK_DEVELOPER>
      <TC_PERCENTAGE_COMPLETED>4</TC_PERCENTAGE_COMPLETED>
      <TESTER>sample string 3</TESTER>
    </TaskDetails>
    <TaskDetails>
      <DEPLOYMENT_BY>sample string 5</DEPLOYMENT_BY>
      <DEPLOYMENT_PERCENTAGE_COMPLETED>6</DEPLOYMENT_PERCENTAGE_COMPLETED>
      <PERCENTAGE_COMPELETED>2</PERCENTAGE_COMPELETED>
      <TASK_DEVELOPER>sample string 1</TASK_DEVELOPER>
      <TC_PERCENTAGE_COMPLETED>4</TC_PERCENTAGE_COMPLETED>
      <TESTER>sample string 3</TESTER>
    </TaskDetails>
  </Requirement>
  <message>sample string 2</message>
  <status>sample string 1</status>
</TaskDetailsApiResponse>

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="Requirement[0].TASK_DEVELOPER"

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

2
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="Requirement[0].TESTER"

sample string 3
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="Requirement[0].TC_PERCENTAGE_COMPLETED"

4
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="Requirement[0].DEPLOYMENT_BY"

sample string 5
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="Requirement[0].DEPLOYMENT_PERCENTAGE_COMPLETED"

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

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

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

sample string 3
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="Requirement[1].TC_PERCENTAGE_COMPLETED"

4
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="Requirement[1].DEPLOYMENT_BY"

sample string 5
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="Requirement[1].DEPLOYMENT_PERCENTAGE_COMPLETED"

6
--MultipartDataMediaFormatterBoundary1q2w3e--