GET jxc_api/DDL/GetSimpleAccount?kw={kw}&offsetStop={offsetStop}&showDisable={showDisable}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
kw

string

Required

offsetStop

string

Required

showDisable

boolean

Default value is False

Body Parameters

None.

Response Information

Resource Description

DDLListOfDDLAccount
NameDescriptionTypeAdditional information
OffsetStop

string

None.

Items

Collection of DDLAccount

None.

Response Formats

application/json, text/json

Sample:
{
  "OffsetStop": "sample string 1",
  "Items": [
    {
      "Id": 1,
      "No": "sample string 2",
      "Name": "sample string 3",
      "CurrencyType": 4,
      "CurrencyTypeName": "sample string 5",
      "ExchangeRate": 6.0,
      "NameAttachCurrencyType": "sample string 7"
    },
    {
      "Id": 1,
      "No": "sample string 2",
      "Name": "sample string 3",
      "CurrencyType": 4,
      "CurrencyTypeName": "sample string 5",
      "ExchangeRate": 6.0,
      "NameAttachCurrencyType": "sample string 7"
    }
  ]
}

application/xml, text/xml

Sample:
<DDLListOfDDLAccountJYhYqFqe xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonScm.WebApi.Areas.Framework.Models">
  <Items>
    <DDLAccount>
      <CurrencyType>4</CurrencyType>
      <CurrencyTypeName>sample string 5</CurrencyTypeName>
      <ExchangeRate>6</ExchangeRate>
      <Id>1</Id>
      <Name>sample string 3</Name>
      <NameAttachCurrencyType>sample string 7</NameAttachCurrencyType>
      <No>sample string 2</No>
    </DDLAccount>
    <DDLAccount>
      <CurrencyType>4</CurrencyType>
      <CurrencyTypeName>sample string 5</CurrencyTypeName>
      <ExchangeRate>6</ExchangeRate>
      <Id>1</Id>
      <Name>sample string 3</Name>
      <NameAttachCurrencyType>sample string 7</NameAttachCurrencyType>
      <No>sample string 2</No>
    </DDLAccount>
  </Items>
  <OffsetStop>sample string 1</OffsetStop>
</DDLListOfDDLAccountJYhYqFqe>