POST CustomerBalanceConfirmation/CustomerBalanceConfirmation_Insert
Request Information
URI Parameters
None.
Body Parameters
CustomerBalanceConfirmation| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| CustomerId | integer |
None. |
|
| FromDate | date |
None. |
|
| ToDate | date |
None. |
|
| Balance | decimal number |
None. |
|
| CreatedBy | integer |
None. |
|
| CreatedDate | date |
None. |
|
| Status | integer |
None. |
|
| UpdatedBy | integer |
None. |
|
| UpdatedDate | date |
None. |
|
| Reason | string |
None. |
|
| EmailLogId | integer |
None. |
|
| CustomerEmail | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"CustomerId": 2,
"FromDate": "2025-10-29T06:01:10.4284981+03:00",
"ToDate": "2025-10-29T06:01:10.4284981+03:00",
"Balance": 5.0,
"CreatedBy": 6,
"CreatedDate": "2025-10-29T06:01:10.4284981+03:00",
"Status": 8,
"UpdatedBy": 1,
"UpdatedDate": "2025-10-29T06:01:10.4284981+03:00",
"Reason": "sample string 9",
"EmailLogId": 1,
"CustomerEmail": "sample string 10"
}
application/xml, text/xml
Sample:
<CustomerBalanceConfirmation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POCO"> <Balance>5</Balance> <CreatedBy>6</CreatedBy> <CreatedDate>2025-10-29T06:01:10.4284981+03:00</CreatedDate> <CustomerEmail>sample string 10</CustomerEmail> <CustomerId>2</CustomerId> <EmailLogId>1</EmailLogId> <FromDate>2025-10-29T06:01:10.4284981+03:00</FromDate> <Id>1</Id> <Reason>sample string 9</Reason> <Status>8</Status> <ToDate>2025-10-29T06:01:10.4284981+03:00</ToDate> <UpdatedBy>1</UpdatedBy> <UpdatedDate>2025-10-29T06:01:10.4284981+03:00</UpdatedDate> </CustomerBalanceConfirmation>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Response| Name | Description | Type | Additional information |
|---|---|---|---|
| ErrorCode | integer |
None. |
|
| ErrorMessage | string |
None. |
|
| IsScusses | boolean |
None. |
|
| ResponseDetails | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"ErrorCode": 1,
"ErrorMessage": "sample string 2",
"IsScusses": true,
"ResponseDetails": {}
}
application/xml, text/xml
Sample:
<Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Accounting.API.Models"> <ErrorCode>1</ErrorCode> <ErrorMessage>sample string 2</ErrorMessage> <IsScusses>true</IsScusses> <ResponseDetails /> </Response>