GET api/OrganizationStats/{id}
Gets organization details.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
OrgId. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
OrganizationStatsName | Description | Type | Additional information |
---|---|---|---|
OrganizationId | integer |
None. |
|
CustomerCount | integer |
None. |
|
ProductCount | integer |
None. |
|
ProductActiveCount | integer |
None. |
|
OrderCount | integer |
None. |
|
ActivityCount | integer |
None. |
|
TotalOrderCountToday | integer |
None. |
|
TotalOrderItemCountToday | integer |
None. |
|
TotalOrderAmountToday | decimal number |
None. |
|
FileCount | integer |
None. |
|
PhotoCount | integer |
None. |
|
PageCount | integer |
None. |
|
FileSizeMb | integer |
None. |
|
PhotoSizeMb | integer |
None. |
|
ProductTagCount | integer |
None. |
|
ProductCategoryCount | integer |
None. |
Response Formats
application/json, text/json
Sample:
{ "OrganizationId": 1, "CustomerCount": 1, "ProductCount": 1, "ProductActiveCount": 1, "OrderCount": 1, "ActivityCount": 1, "TotalOrderCountToday": 1, "TotalOrderItemCountToday": 1, "TotalOrderAmountToday": 2.0, "FileCount": 1, "PhotoCount": 1, "PageCount": 1, "FileSizeMb": 1, "PhotoSizeMb": 1, "ProductTagCount": 1, "ProductCategoryCount": 1 }
application/xml, text/xml
Sample:
<OrganizationStats xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CustomersdbWebShared.Models"> <ActivityCount>1</ActivityCount> <CustomerCount>1</CustomerCount> <FileCount>1</FileCount> <FileSizeMb>1</FileSizeMb> <OrderCount>1</OrderCount> <OrganizationId>1</OrganizationId> <PageCount>1</PageCount> <PhotoCount>1</PhotoCount> <PhotoSizeMb>1</PhotoSizeMb> <ProductActiveCount>1</ProductActiveCount> <ProductCategoryCount>1</ProductCategoryCount> <ProductCount>1</ProductCount> <ProductTagCount>1</ProductTagCount> <TotalOrderAmountToday>2</TotalOrderAmountToday> <TotalOrderCountToday>1</TotalOrderCountToday> <TotalOrderItemCountToday>1</TotalOrderItemCountToday> </OrganizationStats>