GET api/GetDashboardCount?ClientId={ClientId}&SnapshotStartDate={SnapshotStartDate}&SnapshotEndDate={SnapshotEndDate}

Request Information

URI Parameters

Name Description Type Additional information
ClientId

integer

Required

SnapshotStartDate

string

None.

SnapshotEndDate

string

None.

Body Parameters

None.

Response Information

Resource Description

ApiResponseOfDashboardCountModel
Name Description Type Additional information
Data

Collection of DashboardCountModel

None.

Success

boolean

None.

Message

Collection of string

None.

Response Formats

application/json, text/json

Sample:
{
  "Data": [
    {
      "EntityInvestorCount": 1,
      "IndividualInvestorCount": 2,
      "GroupEntityCount": 3,
      "FormCount": 4
    },
    {
      "EntityInvestorCount": 1,
      "IndividualInvestorCount": 2,
      "GroupEntityCount": 3,
      "FormCount": 4
    }
  ],
  "Success": true,
  "Message": [
    "sample string 1",
    "sample string 2"
  ]
}