GET api/Dashboard?filter={filter}&Month={Month}&param={param}

Get The Compliance list acccording to Master data, Compliance Type (Event/Regular), Compliance Reponses(Complied, Partially-Complied and Non-Complied Compliance), Criticality and Client.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
filter

string

Required

Month

string

Required

param

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of DashboardComplianceData
NameDescriptionTypeAdditional information
ExtendedDueDate

date

None.

Response

string

None.

Status

string

None.

EventCategory

string

None.

EventSubCategory

string

None.

EventCount

integer

None.

ReviewerId

globally unique identifier

None.

OwnerId

globally unique identifier

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ExtendedDueDate": "2024-12-29T08:37:41.3721236+00:00",
    "Response": "sample string 2",
    "Status": "sample string 3",
    "EventCategory": "sample string 4",
    "EventSubCategory": "sample string 5",
    "EventCount": 6,
    "ReviewerId": "c9cf9031-7414-46a5-85b6-d04dea735c67",
    "OwnerId": "86fd2e13-e147-480c-953c-0ff63c8dbd73"
  },
  {
    "ExtendedDueDate": "2024-12-29T08:37:41.3721236+00:00",
    "Response": "sample string 2",
    "Status": "sample string 3",
    "EventCategory": "sample string 4",
    "EventSubCategory": "sample string 5",
    "EventCount": 6,
    "ReviewerId": "c9cf9031-7414-46a5-85b6-d04dea735c67",
    "OwnerId": "86fd2e13-e147-480c-953c-0ff63c8dbd73"
  }
]

application/xml, text/xml

Sample:
<ArrayOfDashboardComplianceData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IRAApi.CustomModel">
  <DashboardComplianceData>
    <EventCategory>sample string 4</EventCategory>
    <EventCount>6</EventCount>
    <EventSubCategory>sample string 5</EventSubCategory>
    <ExtendedDueDate>2024-12-29T08:37:41.3721236+00:00</ExtendedDueDate>
    <OwnerId>86fd2e13-e147-480c-953c-0ff63c8dbd73</OwnerId>
    <Response>sample string 2</Response>
    <ReviewerId>c9cf9031-7414-46a5-85b6-d04dea735c67</ReviewerId>
    <Status>sample string 3</Status>
  </DashboardComplianceData>
  <DashboardComplianceData>
    <EventCategory>sample string 4</EventCategory>
    <EventCount>6</EventCount>
    <EventSubCategory>sample string 5</EventSubCategory>
    <ExtendedDueDate>2024-12-29T08:37:41.3721236+00:00</ExtendedDueDate>
    <OwnerId>86fd2e13-e147-480c-953c-0ff63c8dbd73</OwnerId>
    <Response>sample string 2</Response>
    <ReviewerId>c9cf9031-7414-46a5-85b6-d04dea735c67</ReviewerId>
    <Status>sample string 3</Status>
  </DashboardComplianceData>
</ArrayOfDashboardComplianceData>