GET api/AuditProposalServiceDescriptionMaster

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

AuditsProposalServiceDescriptionMasterResult
NameDescriptionTypeAdditional information
status

string

None.

message

string

None.

serviceDescriptionMasters

Collection of AuditsProposalServiceDescriptionMaster

None.

Response Formats

application/json, text/json

Sample:
{
  "status": "sample string 1",
  "message": "sample string 2",
  "serviceDescriptionMasters": [
    {
      "MID": 1,
      "SERVICE_NAME": "sample string 2",
      "SERVICE_DESCRIPTION": "sample string 3"
    },
    {
      "MID": 1,
      "SERVICE_NAME": "sample string 2",
      "SERVICE_DESCRIPTION": "sample string 3"
    }
  ]
}

text/html

Sample:
{"status":"sample string 1","message":"sample string 2","serviceDescriptionMasters":[{"MID":1,"SERVICE_NAME":"sample string 2","SERVICE_DESCRIPTION":"sample string 3"},{"MID":1,"SERVICE_NAME":"sample string 2","SERVICE_DESCRIPTION":"sample string 3"}]}

application/xml, text/xml

Sample:
<AuditsProposalServiceDescriptionMasterResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SuntechSupportServices.Models.AuditProposal">
  <message>sample string 2</message>
  <serviceDescriptionMasters>
    <AuditsProposalServiceDescriptionMaster>
      <MID>1</MID>
      <SERVICE_DESCRIPTION>sample string 3</SERVICE_DESCRIPTION>
      <SERVICE_NAME>sample string 2</SERVICE_NAME>
    </AuditsProposalServiceDescriptionMaster>
    <AuditsProposalServiceDescriptionMaster>
      <MID>1</MID>
      <SERVICE_DESCRIPTION>sample string 3</SERVICE_DESCRIPTION>
      <SERVICE_NAME>sample string 2</SERVICE_NAME>
    </AuditsProposalServiceDescriptionMaster>
  </serviceDescriptionMasters>
  <status>sample string 1</status>
</AuditsProposalServiceDescriptionMasterResult>

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="serviceDescriptionMasters[0].MID"

1
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="serviceDescriptionMasters[0].SERVICE_NAME"

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

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

1
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="serviceDescriptionMasters[1].SERVICE_NAME"

sample string 2
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="serviceDescriptionMasters[1].SERVICE_DESCRIPTION"

sample string 3
--MultipartDataMediaFormatterBoundary1q2w3e--