POST api/Insert/Deployment

Request Information

URI Parameters

None.

Body Parameters

Delpoyment_WIP
NameDescriptionTypeAdditional information
MID

integer

None.

TASK_ID

integer

None.

DEPLOYMENT_ID

integer

None.

DEPLOYMENT_BY

string

None.

TASK_MANAGER

string

None.

DEPLOYMENT_COMMENTS

string

None.

STATUS

string

None.

STATUS_DATE

date

None.

DEPLOYMENT_PERCENTAGE_COMPLETED

integer

None.

HOURS_SPEND

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "MID": 1,
  "TASK_ID": 2,
  "DEPLOYMENT_ID": 3,
  "DEPLOYMENT_BY": "sample string 4",
  "TASK_MANAGER": "sample string 5",
  "DEPLOYMENT_COMMENTS": "sample string 6",
  "STATUS": "sample string 7",
  "STATUS_DATE": "2025-08-06T03:26:23.3932144+04:00",
  "DEPLOYMENT_PERCENTAGE_COMPLETED": 9,
  "HOURS_SPEND": 10
}

text/html

Sample:
{"MID":1,"TASK_ID":2,"DEPLOYMENT_ID":3,"DEPLOYMENT_BY":"sample string 4","TASK_MANAGER":"sample string 5","DEPLOYMENT_COMMENTS":"sample string 6","STATUS":"sample string 7","STATUS_DATE":"2025-08-06T03:26:23.3932144+04:00","DEPLOYMENT_PERCENTAGE_COMPLETED":9,"HOURS_SPEND":10}

application/xml, text/xml

Sample:
<Delpoyment_WIP xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SuntechSupportServices.Models.SuntechInternal.TASK">
  <DEPLOYMENT_BY>sample string 4</DEPLOYMENT_BY>
  <DEPLOYMENT_COMMENTS>sample string 6</DEPLOYMENT_COMMENTS>
  <DEPLOYMENT_ID>3</DEPLOYMENT_ID>
  <DEPLOYMENT_PERCENTAGE_COMPLETED>9</DEPLOYMENT_PERCENTAGE_COMPLETED>
  <HOURS_SPEND>10</HOURS_SPEND>
  <MID>1</MID>
  <STATUS>sample string 7</STATUS>
  <STATUS_DATE>2025-08-06T03:26:23.3932144+04:00</STATUS_DATE>
  <TASK_ID>2</TASK_ID>
  <TASK_MANAGER>sample string 5</TASK_MANAGER>
</Delpoyment_WIP>

application/x-www-form-urlencoded

Sample:

Sample not available.

multipart/form-data

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

1
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="TASK_ID"

2
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="DEPLOYMENT_ID"

3
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="DEPLOYMENT_BY"

sample string 4
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="TASK_MANAGER"

sample string 5
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="DEPLOYMENT_COMMENTS"

sample string 6
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="STATUS"

sample string 7
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="STATUS_DATE"

2025-08-06T03:26:23.3932144+04:00
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="DEPLOYMENT_PERCENTAGE_COMPLETED"

9
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="HOURS_SPEND"

10
--MultipartDataMediaFormatterBoundary1q2w3e--

Response Information

Resource Description

Delpoyment_WIPAddResult
NameDescriptionTypeAdditional information
status

string

None.

message

string

None.

TC_WIP

Delpoyment_WIP

None.

Response Formats

application/json, text/json

Sample:
{
  "status": "sample string 1",
  "message": "sample string 2",
  "TC_WIP": {
    "MID": 1,
    "TASK_ID": 2,
    "DEPLOYMENT_ID": 3,
    "DEPLOYMENT_BY": "sample string 4",
    "TASK_MANAGER": "sample string 5",
    "DEPLOYMENT_COMMENTS": "sample string 6",
    "STATUS": "sample string 7",
    "STATUS_DATE": "2025-08-06T03:26:23.4102966+04:00",
    "DEPLOYMENT_PERCENTAGE_COMPLETED": 9,
    "HOURS_SPEND": 10
  }
}

text/html

Sample:
{"status":"sample string 1","message":"sample string 2","TC_WIP":{"MID":1,"TASK_ID":2,"DEPLOYMENT_ID":3,"DEPLOYMENT_BY":"sample string 4","TASK_MANAGER":"sample string 5","DEPLOYMENT_COMMENTS":"sample string 6","STATUS":"sample string 7","STATUS_DATE":"2025-08-06T03:26:23.4102966+04:00","DEPLOYMENT_PERCENTAGE_COMPLETED":9,"HOURS_SPEND":10}}

application/xml, text/xml

Sample:
<Delpoyment_WIPAddResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SuntechSupportServices.Models.SuntechInternal.TASK">
  <TC_WIP>
    <DEPLOYMENT_BY>sample string 4</DEPLOYMENT_BY>
    <DEPLOYMENT_COMMENTS>sample string 6</DEPLOYMENT_COMMENTS>
    <DEPLOYMENT_ID>3</DEPLOYMENT_ID>
    <DEPLOYMENT_PERCENTAGE_COMPLETED>9</DEPLOYMENT_PERCENTAGE_COMPLETED>
    <HOURS_SPEND>10</HOURS_SPEND>
    <MID>1</MID>
    <STATUS>sample string 7</STATUS>
    <STATUS_DATE>2025-08-06T03:26:23.4102966+04:00</STATUS_DATE>
    <TASK_ID>2</TASK_ID>
    <TASK_MANAGER>sample string 5</TASK_MANAGER>
  </TC_WIP>
  <message>sample string 2</message>
  <status>sample string 1</status>
</Delpoyment_WIPAddResult>

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="TC_WIP.MID"

1
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="TC_WIP.TASK_ID"

2
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="TC_WIP.DEPLOYMENT_ID"

3
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="TC_WIP.DEPLOYMENT_BY"

sample string 4
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="TC_WIP.TASK_MANAGER"

sample string 5
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="TC_WIP.DEPLOYMENT_COMMENTS"

sample string 6
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="TC_WIP.STATUS"

sample string 7
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="TC_WIP.STATUS_DATE"

2025-08-06T03:26:23.4102966+04:00
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="TC_WIP.DEPLOYMENT_PERCENTAGE_COMPLETED"

9
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="TC_WIP.HOURS_SPEND"

10
--MultipartDataMediaFormatterBoundary1q2w3e--