POST api/CompQA/PostCompanyQA

Request Information

URI Parameters

None.

Body Parameters

QACompanyDTO
NameDescriptionTypeAdditional information
CaseNo

integer

None.

EmployeeId

string

String length: inclusive between 0 and 8000

CorporationCode

string

String length: inclusive between 0 and 20

WorkLocationCode

string

String length: inclusive between 0 and 20

OnsiteLocationId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "CaseNo": 1,
  "EmployeeId": "sample string 2",
  "CorporationCode": "sample string 3",
  "WorkLocationCode": "sample string 4",
  "OnsiteLocationId": 1
}

application/xml, text/xml

Sample:
<QADTO.QACompanyDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.DTO.NurseTriage.QA">
  <CaseNo>1</CaseNo>
  <CorporationCode>sample string 3</CorporationCode>
  <EmployeeId>sample string 2</EmployeeId>
  <OnsiteLocationId>1</OnsiteLocationId>
  <WorkLocationCode>sample string 4</WorkLocationCode>
</QADTO.QACompanyDTO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

AsapResponseOfQACompanyDTO
NameDescriptionTypeAdditional information
isSuccess

boolean

None.

message

string

None.

jsonObj

QACompanyDTO

None.

totalCount

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "isSuccess": true,
  "message": "sample string 2",
  "jsonObj": {
    "CaseNo": 1,
    "EmployeeId": "sample string 2",
    "CorporationCode": "sample string 3",
    "WorkLocationCode": "sample string 4",
    "OnsiteLocationId": 1
  },
  "totalCount": 3
}

application/xml, text/xml

Sample:
<AsapResponseOfQADTO.QACompanyDTOkt8rDF_S0 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.Common">
  <isSuccess>true</isSuccess>
  <jsonObj xmlns:d2p1="http://schemas.datacontract.org/2004/07/ASAP_BL.DTO.NurseTriage.QA">
    <d2p1:CaseNo>1</d2p1:CaseNo>
    <d2p1:CorporationCode>sample string 3</d2p1:CorporationCode>
    <d2p1:EmployeeId>sample string 2</d2p1:EmployeeId>
    <d2p1:OnsiteLocationId>1</d2p1:OnsiteLocationId>
    <d2p1:WorkLocationCode>sample string 4</d2p1:WorkLocationCode>
  </jsonObj>
  <message>sample string 2</message>
  <totalCount>3</totalCount>
</AsapResponseOfQADTO.QACompanyDTOkt8rDF_S0>