POST api/ReferralDashboard
Request Information
URI Parameters
None.
Body Parameters
ReferralDashboardModel| Name | Description | Type | Additional information | 
|---|---|---|---|
| InnovId | integer | None. | 
Request Formats
application/json, text/json
            Sample:
        
{
  "InnovId": 1
}
        application/xml, text/xml
            Sample:
        <ReferralDashboardModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RESTWebAPIForPaperlessOnboarding.Models"> <InnovId>1</InnovId> </ReferralDashboardModel>
application/x-www-form-urlencoded
            Sample:
    
        
Response Information
Resource Description
ReferralDashboardResponse| Name | Description | Type | Additional information | 
|---|---|---|---|
| Status | string | None. | |
| Message | string | None. | |
| Data | ReferralDashboardData | None. | 
Response Formats
application/json, text/json
            Sample:
        
{
  "Status": "sample string 1",
  "Message": "sample string 2",
  "Data": {
    "TotalReferralGiven": "sample string 1",
    "TotalInterviewed": "sample string 2",
    "TotalSelected": "sample string 3",
    "TotalJoined": "sample string 4",
    "TotalPayrolled": "sample string 5",
    "EligibleForIncentive": "sample string 6",
    "TotalAmoutPaid": "sample string 7"
  }
}
        application/xml, text/xml
            Sample:
<ReferralDashboardResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RESTWebAPIForPaperlessOnboarding.Models">
  <Data>
    <EligibleForIncentive>sample string 6</EligibleForIncentive>
    <TotalAmoutPaid>sample string 7</TotalAmoutPaid>
    <TotalInterviewed>sample string 2</TotalInterviewed>
    <TotalJoined>sample string 4</TotalJoined>
    <TotalPayrolled>sample string 5</TotalPayrolled>
    <TotalReferralGiven>sample string 1</TotalReferralGiven>
    <TotalSelected>sample string 3</TotalSelected>
  </Data>
  <Message>sample string 2</Message>
  <Status>sample string 1</Status>
</ReferralDashboardResponse>