POST api/Deloitte/DeloitteImportLedgerBalance
Request Information
URI Parameters
None.
Body Parameters
DeloitteLedgerBalanceRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| SecretKey | string |
None. |
|
| EnterprisesCode | string |
None. |
|
| LedgerBalace | Collection of DeloitteLedgerBalanceData |
None. |
Request Formats
application/json, text/json
Sample:
{
"SecretKey": "sample string 1",
"EnterprisesCode": "sample string 2",
"LedgerBalace": [
{
"BalAsOn": "sample string 1",
"PartyCode": "sample string 2",
"PartyName": "sample string 3",
"LedgerAmount": 4.0,
"DrOrCr": "sample string 5",
"DepositAmount": 6.0
},
{
"BalAsOn": "sample string 1",
"PartyCode": "sample string 2",
"PartyName": "sample string 3",
"LedgerAmount": 4.0,
"DrOrCr": "sample string 5",
"DepositAmount": 6.0
}
]
}
application/xml, text/xml
Sample:
<DeloitteLedgerBalanceRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ZipDMSModels">
<EnterprisesCode>sample string 2</EnterprisesCode>
<LedgerBalace>
<DeloitteLedgerBalanceData>
<BalAsOn>sample string 1</BalAsOn>
<DepositAmount>6</DepositAmount>
<DrOrCr>sample string 5</DrOrCr>
<LedgerAmount>4</LedgerAmount>
<PartyCode>sample string 2</PartyCode>
<PartyName>sample string 3</PartyName>
</DeloitteLedgerBalanceData>
<DeloitteLedgerBalanceData>
<BalAsOn>sample string 1</BalAsOn>
<DepositAmount>6</DepositAmount>
<DrOrCr>sample string 5</DrOrCr>
<LedgerAmount>4</LedgerAmount>
<PartyCode>sample string 2</PartyCode>
<PartyName>sample string 3</PartyName>
</DeloitteLedgerBalanceData>
</LedgerBalace>
<SecretKey>sample string 1</SecretKey>
</DeloitteLedgerBalanceRequestModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |