GET api/Accounting/Series
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of AccountSerie| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| fromNo | integer |
None. |
|
| toNo | integer |
None. |
|
| description | string |
None. |
|
| accountType | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"fromNo": 2,
"toNo": 3,
"description": "sample string 4",
"accountType": 5
},
{
"id": 1,
"fromNo": 2,
"toNo": 3,
"description": "sample string 4",
"accountType": 5
}
]
application/xml, text/xml
Sample:
<ArrayOfAccountSerie xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<AccountSerie>
<id>1</id>
<fromNo>2</fromNo>
<toNo>3</toNo>
<description>sample string 4</description>
<accountType>5</accountType>
</AccountSerie>
<AccountSerie>
<id>1</id>
<fromNo>2</fromNo>
<toNo>3</toNo>
<description>sample string 4</description>
<accountType>5</accountType>
</AccountSerie>
</ArrayOfAccountSerie>