POST api/customers/accountsreceivable
Create customer accounts receivable.
Request Information
URI Parameters
None.
Body Parameters
CustomerAccountsReceivablePostRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerNumber | integer |
None. |
|
| BankAccount | string |
Max length: 50 |
|
| BankName | string |
Max length: 50 |
|
| BankClearingNo | string |
Max length: 10 |
|
| IBAN | string |
Max length: 34 |
|
| BIC | string |
Max length: 12 |
|
| FreezeFlag | boolean |
None. |
|
| PaysReminderFee | boolean |
None. |
|
| Reminders | boolean |
None. |
|
| CreditLimit | decimal number |
None. |
|
| Turnover | decimal number |
None. |
|
| TurnoverLastYear | decimal number |
None. |
|
| CurrentClaim | decimal number |
None. |
|
| CreditChangeDate | date |
None. |
|
| CustomerStatementTypeId | integer |
None. |
Remarks
Updates customers accounts receivable if it exist
Example
None.
Request Formats
application/json, text/json
Sample:
{
"CustomerNumber": 1,
"BankAccount": "sample string 2",
"BankName": "sample string 3",
"BankClearingNo": "sample string 4",
"IBAN": "sample string 5",
"BIC": "sample string 6",
"FreezeFlag": true,
"PaysReminderFee": true,
"Reminders": true,
"CreditLimit": 10.0,
"Turnover": 11.0,
"TurnoverLastYear": 12.0,
"CurrentClaim": 13.0,
"CreditChangeDate": "2026-01-21 22:53:31",
"CustomerStatementTypeId": 14
}
application/xml, text/xml
Sample:
<CustomerAccountsReceivablePostRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Compilator.DDAPI.DTO.Business"> <BIC>sample string 6</BIC> <BankAccount>sample string 2</BankAccount> <BankClearingNo>sample string 4</BankClearingNo> <BankName>sample string 3</BankName> <CreditChangeDate>2026-01-21T22:53:31.4889603+01:00</CreditChangeDate> <CreditLimit>10</CreditLimit> <CurrentClaim>13</CurrentClaim> <CustomerStatementTypeId>14</CustomerStatementTypeId> <FreezeFlag>true</FreezeFlag> <IBAN>sample string 5</IBAN> <PaysReminderFee>true</PaysReminderFee> <Reminders>true</Reminders> <Turnover>11</Turnover> <TurnoverLastYear>12</TurnoverLastYear> <CustomerNumber>1</CustomerNumber> </CustomerAccountsReceivablePostRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
CustomerAccountsReceivablePostResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Errors | Collection of PostCustomerAccountsReceivableError |
None. |
|
| Success | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Errors": [
{
"ErrorCode": 1,
"ErrorMessage": "sample string 1"
},
{
"ErrorCode": 1,
"ErrorMessage": "sample string 1"
}
],
"Success": true
}
application/xml, text/xml
Sample:
<CustomerAccountsReceivablePostResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Compilator.DDAPI.DTO.Business">
<Errors>
<PostCustomerAccountsReceivableError>
<ErrorCode>InternalServerError</ErrorCode>
<ErrorMessage>sample string 1</ErrorMessage>
</PostCustomerAccountsReceivableError>
<PostCustomerAccountsReceivableError>
<ErrorCode>InternalServerError</ErrorCode>
<ErrorMessage>sample string 1</ErrorMessage>
</PostCustomerAccountsReceivableError>
</Errors>
<Success>true</Success>
</CustomerAccountsReceivablePostResponse>