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

Request Information

URI Parameters

NameDescriptionTypeAdditional information
refresh

boolean

Default value is False

Body Parameters

None.

Response Information

Resource Description

SingleResultResponseOfWidgetWithDataDtoOfDbProfileData
NameDescriptionTypeAdditional information
Meta

MetaSingleResult

None.

Notifications

None.

Response Formats

application/json, text/json

Sample:
{
  "meta": {},
  "notifications": [
    {},
    {}
  ],
  "result": {
    "id": "35d585bc-4d86-4fad-a9b2-516f25cdbbe0",
    "code": "sample string 2",
    "data": {
      "totalCustomers": 1,
      "totalWomenCustomers": 2,
      "totalMenCustomers": 3,
      "totalCustomersWithRelatives": 4,
      "totalWithUndefinedGender": 5,
      "totalCustomersByTags": [
        {
          "tagCode": "sample string 1",
          "tagName": "sample string 2",
          "totalCustomers": 3
        },
        {
          "tagCode": "sample string 1",
          "tagName": "sample string 2",
          "totalCustomers": 3
        }
      ]
    }
  }
}

application/xml, text/xml

Sample:
<SingleResultResponseOfWidgetWithDataDtoOfDbProfileDatadOvjT49_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:TotalCustomers>1</d2p1:TotalCustomers>
      <d2p1:TotalCustomersByTags>
        <d2p1:TotalCustomersByTag>
          <d2p1:TagCode>sample string 1</d2p1:TagCode>
          <d2p1:TagName>sample string 2</d2p1:TagName>
          <d2p1:TotalCustomers>3</d2p1:TotalCustomers>
        </d2p1:TotalCustomersByTag>
        <d2p1:TotalCustomersByTag>
          <d2p1:TagCode>sample string 1</d2p1:TagCode>
          <d2p1:TagName>sample string 2</d2p1:TagName>
          <d2p1:TotalCustomers>3</d2p1:TotalCustomers>
        </d2p1:TotalCustomersByTag>
      </d2p1:TotalCustomersByTags>
      <d2p1:TotalCustomersWithRelatives>4</d2p1:TotalCustomersWithRelatives>
      <d2p1:TotalMenCustomers>3</d2p1:TotalMenCustomers>
      <d2p1:TotalWithUndefinedGender>5</d2p1:TotalWithUndefinedGender>
      <d2p1:TotalWomenCustomers>2</d2p1:TotalWomenCustomers>
    </d2p1:Data>
    <d2p1:Id>35d585bc-4d86-4fad-a9b2-516f25cdbbe0</d2p1:Id>
  </Result>
</SingleResultResponseOfWidgetWithDataDtoOfDbProfileDatadOvjT49_PdOvjT49_P>