POST api/AccountStatement

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
accountStat
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "typeAccountStat": {
    "label": "sample string 1",
    "value": 2
  },
  "open": true,
  "previous": true,
  "customerName": {
    "label": "sample string 1",
    "value": 2
  },
  "startDate": "2025-04-03T13:53:14.621212-07:00",
  "endDate": "2025-04-03T13:53:14.621212-07:00",
  "empBranch": {
    "emp": 1,
    "branch": 2
  }
}

application/xml, text/xml

Sample:
<AccountStatement xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplicationAPI.Models">
  <customerName>
    <label>sample string 1</label>
    <value>2</value>
  </customerName>
  <empBranch>
    <branch>2</branch>
    <emp>1</emp>
  </empBranch>
  <endDate>2025-04-03T13:53:14.621212-07:00</endDate>
  <open>true</open>
  <previous>true</previous>
  <startDate>2025-04-03T13:53:14.621212-07:00</startDate>
  <typeAccountStat>
    <label>sample string 1</label>
    <value>2</value>
  </typeAccountStat>
</AccountStatement>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

No documentation available.

Response body formats

application/json, text/json

Sample:
[
  {
    "res_id": 1,
    "date": "2025-04-03T13:53:14.621212-07:00",
    "dept": 3.1,
    "credit": 4.1,
    "acc_no": 5,
    "notes": "sample string 6"
  },
  {
    "res_id": 1,
    "date": "2025-04-03T13:53:14.621212-07:00",
    "dept": 3.1,
    "credit": 4.1,
    "acc_no": 5,
    "notes": "sample string 6"
  },
  {
    "res_id": 1,
    "date": "2025-04-03T13:53:14.621212-07:00",
    "dept": 3.1,
    "credit": 4.1,
    "acc_no": 5,
    "notes": "sample string 6"
  }
]

application/xml, text/xml

Sample:
<ArrayOfReturnAccountStatement xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplicationAPI.Models">
  <ReturnAccountStatement>
    <acc_no>5</acc_no>
    <credit>4.1</credit>
    <date>2025-04-03T13:53:14.621212-07:00</date>
    <dept>3.1</dept>
    <notes>sample string 6</notes>
    <res_id>1</res_id>
  </ReturnAccountStatement>
  <ReturnAccountStatement>
    <acc_no>5</acc_no>
    <credit>4.1</credit>
    <date>2025-04-03T13:53:14.621212-07:00</date>
    <dept>3.1</dept>
    <notes>sample string 6</notes>
    <res_id>1</res_id>
  </ReturnAccountStatement>
  <ReturnAccountStatement>
    <acc_no>5</acc_no>
    <credit>4.1</credit>
    <date>2025-04-03T13:53:14.621212-07:00</date>
    <dept>3.1</dept>
    <notes>sample string 6</notes>
    <res_id>1</res_id>
  </ReturnAccountStatement>
</ArrayOfReturnAccountStatement>