GET api/payments/setup

Get payment setup.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

PaymentSetupDTO
NameDescriptionTypeAdditional information
From

The beginning date of payments.

date

None.

To

The ending date of payments.

date

None.

Amount

Amount to pay, in eurocents.

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "From": "2025-06-28T14:06:27.4317373+00:00",
  "To": "2025-06-28T14:06:27.4317373+00:00",
  "Amount": 2
}

text/html

Sample:
{"From":"2025-06-28T14:06:27.4317373+00:00","To":"2025-06-28T14:06:27.4317373+00:00","Amount":2}

application/xml, text/xml

Sample:
<PaymentSetupDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Common.WebAPI.DTOs">
  <Amount>2</Amount>
  <From>2025-06-28T14:06:27.4317373+00:00</From>
  <To>2025-06-28T14:06:27.4317373+00:00</To>
</PaymentSetupDTO>