PUT api/customers/accountsreceivable

Update customer accounts receivable.

Request Information

URI Parameters

None.

Body Parameters

CustomerAccountsReceivablePutRequest
NameDescriptionTypeAdditional 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

Creates new customer accounts receivable if it doesn't 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:
<CustomerAccountsReceivablePutRequest 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.2223262+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>
</CustomerAccountsReceivablePutRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

CustomerAccountsReceivablePutResponse
NameDescriptionTypeAdditional information
Errors

Collection of PutCustomerAccountsReceivableError

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:
<CustomerAccountsReceivablePutResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Compilator.DDAPI.DTO.Business">
  <Errors>
    <PutCustomerAccountsReceivableError>
      <ErrorCode>InternalServerError</ErrorCode>
      <ErrorMessage>sample string 1</ErrorMessage>
    </PutCustomerAccountsReceivableError>
    <PutCustomerAccountsReceivableError>
      <ErrorCode>InternalServerError</ErrorCode>
      <ErrorMessage>sample string 1</ErrorMessage>
    </PutCustomerAccountsReceivableError>
  </Errors>
  <Success>true</Success>
</CustomerAccountsReceivablePutResponse>