GET api/CountryWiseDashboard?clientId={clientId}&complianceMonth={complianceMonth}&entityId={entityId}&categoryId={categoryId}&roleName={roleName}&assessmentCycleId={assessmentCycleId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
clientId

string

Required

complianceMonth

string

Required

entityId

string

Required

categoryId

string

Required

roleName

string

Required

assessmentCycleId

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Collection of CustomCountryWiseList
NameDescriptionTypeAdditional information
countryId

globally unique identifier

None.

countryName

string

None.

C_High

integer

None.

C_Medium

integer

None.

C_Low

integer

None.

NC_High

integer

None.

NC_Medium

integer

None.

NC_Low

integer

None.

PC_High

integer

None.

PC_Medium

integer

None.

PC_Low

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "countryId": "98ddc59b-20d5-4b6c-874f-9f3f351400cf",
    "countryName": "sample string 2",
    "C_High": 3,
    "C_Medium": 4,
    "C_Low": 5,
    "NC_High": 6,
    "NC_Medium": 7,
    "NC_Low": 8,
    "PC_High": 9,
    "PC_Medium": 10,
    "PC_Low": 11
  },
  {
    "countryId": "98ddc59b-20d5-4b6c-874f-9f3f351400cf",
    "countryName": "sample string 2",
    "C_High": 3,
    "C_Medium": 4,
    "C_Low": 5,
    "NC_High": 6,
    "NC_Medium": 7,
    "NC_Low": 8,
    "PC_High": 9,
    "PC_Medium": 10,
    "PC_Low": 11
  }
]

application/xml, text/xml

Sample:
<ArrayOfCustomCountryWiseList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IRAApi.CustomModel">
  <CustomCountryWiseList>
    <C_High>3</C_High>
    <C_Low>5</C_Low>
    <C_Medium>4</C_Medium>
    <NC_High>6</NC_High>
    <NC_Low>8</NC_Low>
    <NC_Medium>7</NC_Medium>
    <PC_High>9</PC_High>
    <PC_Low>11</PC_Low>
    <PC_Medium>10</PC_Medium>
    <countryId>98ddc59b-20d5-4b6c-874f-9f3f351400cf</countryId>
    <countryName>sample string 2</countryName>
  </CustomCountryWiseList>
  <CustomCountryWiseList>
    <C_High>3</C_High>
    <C_Low>5</C_Low>
    <C_Medium>4</C_Medium>
    <NC_High>6</NC_High>
    <NC_Low>8</NC_Low>
    <NC_Medium>7</NC_Medium>
    <PC_High>9</PC_High>
    <PC_Low>11</PC_Low>
    <PC_Medium>10</PC_Medium>
    <countryId>98ddc59b-20d5-4b6c-874f-9f3f351400cf</countryId>
    <countryName>sample string 2</countryName>
  </CustomCountryWiseList>
</ArrayOfCustomCountryWiseList>