POST api/Customer/GetPurchaseByFilters

Request Information

URI Parameters

None.

Body Parameters

PurchaseFiltersRequest
NameDescriptionTypeAdditional information
MallId

string

None.

IdentificationNumber

string

None.

RegisterDateBegin

date

None.

RegisterDateEnd

date

None.

BillingDateBegin

date

None.

BillingDateEnd

date

None.

UpdateBegin

date

None.

UpdateEnd

date

None.

EstablishmentId

string

None.

CategoryId

integer

None.

SubCategoryId

integer

None.

PageIndex

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "MallId": "sample string 1",
  "IdentificationNumber": "sample string 2",
  "RegisterDateBegin": "2026-02-02T23:28:57.1426736-05:00",
  "RegisterDateEnd": "2026-02-02T23:28:57.1426736-05:00",
  "BillingDateBegin": "2026-02-02T23:28:57.1426736-05:00",
  "BillingDateEnd": "2026-02-02T23:28:57.1426736-05:00",
  "UpdateBegin": "2026-02-02T23:28:57.1426736-05:00",
  "UpdateEnd": "2026-02-02T23:28:57.1426736-05:00",
  "EstablishmentId": "sample string 3",
  "CategoryId": 1,
  "SubCategoryId": 1,
  "PageIndex": 4
}

application/xml, text/xml

Sample:
<PurchaseFiltersRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Big.Viva.Core.Domain.DTO">
  <BillingDateBegin>2026-02-02T23:28:57.1426736-05:00</BillingDateBegin>
  <BillingDateEnd>2026-02-02T23:28:57.1426736-05:00</BillingDateEnd>
  <CategoryId>1</CategoryId>
  <EstablishmentId>sample string 3</EstablishmentId>
  <IdentificationNumber>sample string 2</IdentificationNumber>
  <MallId>sample string 1</MallId>
  <PageIndex>4</PageIndex>
  <RegisterDateBegin>2026-02-02T23:28:57.1426736-05:00</RegisterDateBegin>
  <RegisterDateEnd>2026-02-02T23:28:57.1426736-05:00</RegisterDateEnd>
  <SubCategoryId>1</SubCategoryId>
  <UpdateBegin>2026-02-02T23:28:57.1426736-05:00</UpdateBegin>
  <UpdateEnd>2026-02-02T23:28:57.1426736-05:00</UpdateEnd>
</PurchaseFiltersRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Response2
NameDescriptionTypeAdditional information
Result

boolean

None.

Code

integer

None.

Message

string

None.

Data

DataTable

None.

TotalRecords

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "Result": true,
  "Code": 2,
  "Message": "sample string 3",
  "Data": null,
  "TotalRecords": 4
}

application/xml, text/xml

Sample:
<Response2 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Big.Viva.Core.Domain.DTO">
  <Code>2</Code>
  <Data i:nil="true" />
  <Message>sample string 3</Message>
  <Result>true</Result>
  <TotalRecords>4</TotalRecords>
</Response2>