POST api/Dashboard/GetDashboardData

Request Information

URI Parameters

None.

Body Parameters

DashboardModel
NameDescriptionTypeAdditional information
EmployeeId

integer

None.

OrgId

integer

None.

LicenceId

integer

None.

DonationDate

date

None.

ReceiptCount

integer

None.

DonorCount

integer

None.

Cash

decimal number

None.

Visa

decimal number

None.

Cheque

decimal number

None.

SiteName

string

None.

Rates

decimal number

None.

GrandTotal

decimal number

None.

Request Formats

application/json, text/json

Sample:
{
  "EmployeeId": 1,
  "OrgId": 1,
  "LicenceId": 1,
  "DonationDate": "2026-07-21T20:45:21.3056639+03:00",
  "ReceiptCount": 2,
  "DonorCount": 3,
  "Cash": 4.0,
  "Visa": 5.0,
  "Cheque": 6.0,
  "SiteName": "sample string 7",
  "Rates": 8.0,
  "GrandTotal": 9.0
}

application/xml, text/xml

Sample:
<DashboardModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ECBWebAPI.Core.Models">
  <Cash>4</Cash>
  <Cheque>6</Cheque>
  <DonationDate>2026-07-21T20:45:21.3056639+03:00</DonationDate>
  <DonorCount>3</DonorCount>
  <EmployeeId>1</EmployeeId>
  <GrandTotal>9</GrandTotal>
  <LicenceId>1</LicenceId>
  <OrgId>1</OrgId>
  <Rates>8</Rates>
  <ReceiptCount>2</ReceiptCount>
  <SiteName>sample string 7</SiteName>
  <Visa>5</Visa>
</DashboardModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.