POST api/ReceiptBook/ListProductPickupCategory

Request Information

URI Parameters

None.

Body Parameters

ListReceiptBookCategoryRequest
NameDescriptionTypeAdditional information
PageSize

integer

None.

PageIndex

integer

None.

KeySearch

string

None.

Request Formats

application/json, text/json

Sample:
{
  "PageSize": 1,
  "PageIndex": 1,
  "KeySearch": "sample string 1"
}

application/xml, text/xml

Sample:
<ListReceiptBookCategoryRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Common.Model.Request.ReceiptBook">
  <KeySearch>sample string 1</KeySearch>
  <PageIndex>1</PageIndex>
  <PageSize>1</PageSize>
</ListReceiptBookCategoryRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

PaginatorResponseOfProductPickupResponse
NameDescriptionTypeAdditional information
Count

integer

None.

TotalMoney

decimal number

None.

PayingAmount

decimal number

None.

TotalIncome

decimal number

None.

TotalSpend

decimal number

None.

TotalDebt

decimal number

None.

TotalOrderAmount

decimal number

None.

TotalPaid

decimal number

None.

Items

Collection of ProductPickupResponse

None.

Response Formats

application/json, text/json

Sample:
{
  "Count": 1,
  "TotalMoney": 2.0,
  "PayingAmount": 3.0,
  "TotalIncome": 4.0,
  "TotalSpend": 5.0,
  "TotalDebt": 6.0,
  "TotalOrderAmount": 7.0,
  "TotalPaid": 8.0,
  "Items": [
    {
      "Id": "019cf168-8ca2-43d2-8718-73942aae4d19",
      "Name": "sample string 2",
      "Note": "sample string 3",
      "Color": "sample string 4",
      "Type": 5,
      "Icon": "sample string 6",
      "CreatedTime": "2025-10-26T13:11:32.692806+07:00"
    },
    {
      "Id": "019cf168-8ca2-43d2-8718-73942aae4d19",
      "Name": "sample string 2",
      "Note": "sample string 3",
      "Color": "sample string 4",
      "Type": 5,
      "Icon": "sample string 6",
      "CreatedTime": "2025-10-26T13:11:32.692806+07:00"
    }
  ]
}

application/xml, text/xml

Sample:
<PaginatorResponseOfProductPickupResponsecwUXDUBO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Common.Model.Generics">
  <Count>1</Count>
  <Items xmlns:d2p1="http://schemas.datacontract.org/2004/07/Common.Model.Response.ProductPickup">
    <d2p1:ProductPickupResponse>
      <d2p1:Color>sample string 4</d2p1:Color>
      <d2p1:CreatedTime>2025-10-26T13:11:32.692806+07:00</d2p1:CreatedTime>
      <d2p1:Icon>sample string 6</d2p1:Icon>
      <d2p1:Id>019cf168-8ca2-43d2-8718-73942aae4d19</d2p1:Id>
      <d2p1:Name>sample string 2</d2p1:Name>
      <d2p1:Note>sample string 3</d2p1:Note>
      <d2p1:Type>5</d2p1:Type>
    </d2p1:ProductPickupResponse>
    <d2p1:ProductPickupResponse>
      <d2p1:Color>sample string 4</d2p1:Color>
      <d2p1:CreatedTime>2025-10-26T13:11:32.692806+07:00</d2p1:CreatedTime>
      <d2p1:Icon>sample string 6</d2p1:Icon>
      <d2p1:Id>019cf168-8ca2-43d2-8718-73942aae4d19</d2p1:Id>
      <d2p1:Name>sample string 2</d2p1:Name>
      <d2p1:Note>sample string 3</d2p1:Note>
      <d2p1:Type>5</d2p1:Type>
    </d2p1:ProductPickupResponse>
  </Items>
  <PayingAmount>3</PayingAmount>
  <TotalDebt>6</TotalDebt>
  <TotalIncome>4</TotalIncome>
  <TotalMoney>2</TotalMoney>
  <TotalOrderAmount>7</TotalOrderAmount>
  <TotalPaid>8</TotalPaid>
  <TotalSpend>5</TotalSpend>
</PaginatorResponseOfProductPickupResponsecwUXDUBO>