PUT api/SuntechTaskTestingDBMaster?MID={MID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| MID | integer |
Required |
Body Parameters
SuntechTaskTestingDBMaster| Name | Description | Type | Additional information |
|---|---|---|---|
| MID | integer |
None. |
|
| DBNAME | string |
None. |
|
| DESCRIPTION | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"MID": 1,
"DBNAME": "sample string 2",
"DESCRIPTION": "sample string 3"
}
text/html
Sample:
{"MID":1,"DBNAME":"sample string 2","DESCRIPTION":"sample string 3"}
application/xml, text/xml
Sample:
<SuntechTaskTestingDBMaster xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SuntechSupportServices.Models.DELIVERABLES"> <DBNAME>sample string 2</DBNAME> <DESCRIPTION>sample string 3</DESCRIPTION> <MID>1</MID> </SuntechTaskTestingDBMaster>
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="DBNAME" sample string 2 --MultipartDataMediaFormatterBoundary1q2w3e Content-Disposition: form-data; name="DESCRIPTION" sample string 3 --MultipartDataMediaFormatterBoundary1q2w3e--
Response Information
Resource Description
SuntechTaskTestingDBMasterApiResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| status | string |
None. |
|
| message | string |
None. |
|
| response | SuntechTaskTestingDBMaster |
None. |
Response Formats
application/json, text/json
Sample:
{
"status": "sample string 1",
"message": "sample string 2",
"response": {
"MID": 1,
"DBNAME": "sample string 2",
"DESCRIPTION": "sample string 3"
}
}
text/html
Sample:
{"status":"sample string 1","message":"sample string 2","response":{"MID":1,"DBNAME":"sample string 2","DESCRIPTION":"sample string 3"}}
application/xml, text/xml
Sample:
<SuntechTaskTestingDBMasterApiResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SuntechSupportServices.Models.DELIVERABLES">
<message>sample string 2</message>
<response>
<DBNAME>sample string 2</DBNAME>
<DESCRIPTION>sample string 3</DESCRIPTION>
<MID>1</MID>
</response>
<status>sample string 1</status>
</SuntechTaskTestingDBMasterApiResponse>
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="response.MID" 1 --MultipartDataMediaFormatterBoundary1q2w3e Content-Disposition: form-data; name="response.DBNAME" sample string 2 --MultipartDataMediaFormatterBoundary1q2w3e Content-Disposition: form-data; name="response.DESCRIPTION" sample string 3 --MultipartDataMediaFormatterBoundary1q2w3e--