POST api/v1/segmentation/execute

Request Information

URI Parameters

None.

Body Parameters

string

Request Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

SingleResultResponseOfExecuteSegmentationDto
NameDescriptionTypeAdditional information
Meta

MetaSingleResult

None.

Notifications

None.

Response Formats

application/json, text/json

Sample:
{
  "meta": {},
  "notifications": [
    {},
    {}
  ],
  "result": {
    "query": "sample string 1",
    "totalCustomer": 2,
    "totalCustomerWithEmail": 3,
    "totalCustomerWithMobilePhone": 4,
    "totalCustomerWithMobileApp": 5
  }
}

application/xml, text/xml

Sample:
<SingleResultResponseOfExecuteSegmentationDto5UAM0m6_S 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.Segmentation">
    <d2p1:Query>sample string 1</d2p1:Query>
    <d2p1:TotalCustomer>2</d2p1:TotalCustomer>
    <d2p1:TotalCustomerWithEmail>3</d2p1:TotalCustomerWithEmail>
    <d2p1:TotalCustomerWithMobileApp>5</d2p1:TotalCustomerWithMobileApp>
    <d2p1:TotalCustomerWithMobilePhone>4</d2p1:TotalCustomerWithMobilePhone>
  </Result>
</SingleResultResponseOfExecuteSegmentationDto5UAM0m6_S>