GET api/{database}/PaymentConditionInfo/{paymentConditionId}

Gets the specified PaymentConditionInfo.



Request Information

Parameters

NameDescriptionAdditional information
paymentConditionId The paymentConditionId.

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "description": "sample string 1",
  "expirationDays": 2,
  "isCollectable": true,
  "isKvc": true,
  "isPayable": true,
  "isPreferred": true,
  "isSepa": true,
  "paymentConditionId": "sample string 8",
  "paymentConditionType": "A",
  "rebateDays": 10,
  "rebatePercentage": 11.0
}

application/xml, text/xml

Sample:
<PaymentConditionInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UNIT4.Multivers.API.BL.Financial.Info">
  <Description>sample string 1</Description>
  <ExpirationDays>2</ExpirationDays>
  <IsCollectable>true</IsCollectable>
  <IsKvc>true</IsKvc>
  <IsPayable>true</IsPayable>
  <IsPreferred>true</IsPreferred>
  <IsSepa>true</IsSepa>
  <PaymentConditionId>sample string 8</PaymentConditionId>
  <PaymentConditionType>65</PaymentConditionType>
  <RebateDays>10</RebateDays>
  <RebatePercentage>11</RebatePercentage>
</PaymentConditionInfo>