POST jxc_api/AccountChecking/SearchAccountCheckings

Request Information

URI Parameters

None.

Body Parameters

AccountCheckingCondition
NameDescriptionTypeAdditional information
Type

FType

None.

Start

date

None.

End

date

None.

Ids

Collection of integer

None.

SearchText

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Type": 1010,
  "Start": "2024-05-03 22:22:35",
  "End": "2024-05-03 22:22:35",
  "Ids": [
    1,
    2
  ],
  "SearchText": "sample string 3"
}

application/xml, text/xml

Sample:
<AccountCheckingCondition xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonScm.Model.NewApi.Money.AccountChecking">
  <End>2024-05-03T22:22:35.6634991+08:00</End>
  <Ids xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </Ids>
  <SearchText>sample string 3</SearchText>
  <Start>2024-05-03T22:22:35.6634991+08:00</Start>
  <Type>Customer</Type>
</AccountCheckingCondition>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of AccountCheckingModel
NameDescriptionTypeAdditional information
Date

date

None.

VcId

integer

None.

TradeType

MoneySubjectEnum

None.

BillType

BillType

None.

BillId

integer

None.

Digest

string

None.

PendingAmount

decimal number

None.

GotAmount

decimal number

None.

RestAmount

decimal number

None.

Note

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Date": "2024-05-03 22:22:35",
    "VcId": 2,
    "TradeType": 1010,
    "BillType": 1010,
    "BillId": 3,
    "Digest": "sample string 4",
    "PendingAmount": 5.0,
    "GotAmount": 6.0,
    "RestAmount": 7.0,
    "Note": "sample string 8"
  },
  {
    "Date": "2024-05-03 22:22:35",
    "VcId": 2,
    "TradeType": 1010,
    "BillType": 1010,
    "BillId": 3,
    "Digest": "sample string 4",
    "PendingAmount": 5.0,
    "GotAmount": 6.0,
    "RestAmount": 7.0,
    "Note": "sample string 8"
  }
]

application/xml, text/xml

Sample:
<ArrayOfAccountCheckingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonScm.Model.NewApi.Money.AccountChecking">
  <AccountCheckingModel>
    <BillId>3</BillId>
    <BillType>Purchase</BillType>
    <Date>2024-05-03T22:22:35.6634991+08:00</Date>
    <Digest>sample string 4</Digest>
    <GotAmount>6</GotAmount>
    <Note>sample string 8</Note>
    <PendingAmount>5</PendingAmount>
    <RestAmount>7</RestAmount>
    <TradeType>Receivable</TradeType>
    <VcId>2</VcId>
  </AccountCheckingModel>
  <AccountCheckingModel>
    <BillId>3</BillId>
    <BillType>Purchase</BillType>
    <Date>2024-05-03T22:22:35.6634991+08:00</Date>
    <Digest>sample string 4</Digest>
    <GotAmount>6</GotAmount>
    <Note>sample string 8</Note>
    <PendingAmount>5</PendingAmount>
    <RestAmount>7</RestAmount>
    <TradeType>Receivable</TradeType>
    <VcId>2</VcId>
  </AccountCheckingModel>
</ArrayOfAccountCheckingModel>