GET api/DCMComplianceReviewer?license={license}&clientId={clientId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
license

boolean

Required

clientId

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Collection of LicenseReviewer
NameDescriptionTypeAdditional information
licenseReviewerId

globally unique identifier

None.

licenseReviewerEmailId

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "licenseReviewerId": "925407e5-5c34-4382-aa6e-4098bacdb07c",
    "licenseReviewerEmailId": "sample string 2"
  },
  {
    "licenseReviewerId": "925407e5-5c34-4382-aa6e-4098bacdb07c",
    "licenseReviewerEmailId": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfLicenseReviewer xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IRAApi.CustomModel">
  <LicenseReviewer>
    <licenseReviewerEmailId>sample string 2</licenseReviewerEmailId>
    <licenseReviewerId>925407e5-5c34-4382-aa6e-4098bacdb07c</licenseReviewerId>
  </LicenseReviewer>
  <LicenseReviewer>
    <licenseReviewerEmailId>sample string 2</licenseReviewerEmailId>
    <licenseReviewerId>925407e5-5c34-4382-aa6e-4098bacdb07c</licenseReviewerId>
  </LicenseReviewer>
</ArrayOfLicenseReviewer>