GET api/v1/widgets/offlinecustomerswdgt?refresh={refresh}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
refresh

boolean

Default value is False

Body Parameters

None.

Response Information

Resource Description

SingleResultResponseOfWidgetWithDataDtoOfCustomersEvolutionData
NameDescriptionTypeAdditional information
Meta

MetaSingleResult

None.

Notifications

None.

Response Formats

application/json, text/json

Sample:
{
  "meta": {},
  "notifications": [
    {},
    {}
  ],
  "result": {
    "id": "895f35b5-d1b6-4c46-8787-439b32c547cf",
    "code": "sample string 2",
    "data": {
      "totalCustomersInDb": 1,
      "type": 2,
      "totalCustomersByMonths": [
        {
          "year": 1,
          "month": 2,
          "totalCustomers": 3
        },
        {
          "year": 1,
          "month": 2,
          "totalCustomers": 3
        }
      ]
    }
  }
}

application/xml, text/xml

Sample:
<SingleResultResponseOfWidgetWithDataDtoOfCustomersEvolutionDatadOvjT49_PdOvjT49_P xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Presentation.WebApi.Dtos.Response">
  <Meta />
  <Notifications>
    <Notification />
    <Notification />
  </Notifications>
  <Result xmlns:d2p1="http://schemas.datacontract.org/2004/07/Application.Services.Dtos">
    <d2p1:Code>sample string 2</d2p1:Code>
    <d2p1:Data>
      <d2p1:TotalCustomersByMonths>
        <d2p1:TotalCustomersByMonth>
          <d2p1:Month>2</d2p1:Month>
          <d2p1:TotalCustomers>3</d2p1:TotalCustomers>
          <d2p1:Year>1</d2p1:Year>
        </d2p1:TotalCustomersByMonth>
        <d2p1:TotalCustomersByMonth>
          <d2p1:Month>2</d2p1:Month>
          <d2p1:TotalCustomers>3</d2p1:TotalCustomers>
          <d2p1:Year>1</d2p1:Year>
        </d2p1:TotalCustomersByMonth>
      </d2p1:TotalCustomersByMonths>
      <d2p1:TotalCustomersInDb>1</d2p1:TotalCustomersInDb>
      <d2p1:Type>2</d2p1:Type>
    </d2p1:Data>
    <d2p1:Id>895f35b5-d1b6-4c46-8787-439b32c547cf</d2p1:Id>
  </Result>
</SingleResultResponseOfWidgetWithDataDtoOfCustomersEvolutionDatadOvjT49_PdOvjT49_P>