GET Board/StatisticsData?CompanyName={CompanyName}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| CompanyName | string |
Default value is |
Body Parameters
None.
Response Information
Resource Description
BaseResultQueryOfListOfStatisticsModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | integer |
None. |
|
| Msg | string |
None. |
|
| DataContent | Collection of StatisticsModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": 1,
"Msg": "sample string 2",
"DataContent": [
{
"Type": "sample string 1",
"Totals": 2
},
{
"Type": "sample string 1",
"Totals": 2
}
]
}
application/xml, text/xml
Sample:
<BaseResultQueryOfArrayOfStatisticsModeltZAf4S1t xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WeldingAPI.Models">
<DataContent xmlns:d2p1="http://schemas.datacontract.org/2004/07/WeldingAPI.Models.Response">
<d2p1:StatisticsModel>
<d2p1:Totals>2</d2p1:Totals>
<d2p1:Type>sample string 1</d2p1:Type>
</d2p1:StatisticsModel>
<d2p1:StatisticsModel>
<d2p1:Totals>2</d2p1:Totals>
<d2p1:Type>sample string 1</d2p1:Type>
</d2p1:StatisticsModel>
</DataContent>
<Msg>sample string 2</Msg>
<Success>1</Success>
</BaseResultQueryOfArrayOfStatisticsModeltZAf4S1t>