POST v1/BillingPeriodPaymentSchedules

Request Information

URI Parameters

None.

Body Parameters

Common.Dto.Post.BillingPeriodPaymentSchedules
NameDescriptionTypeAdditional information
billingPeriodDefinitionId

integer

Range: inclusive between 1 and 1.84467440737096E+19

paymentSchedules

Collection of Common.Dto.Post.BillingPeriodPaymentSchedule

None.

Request Formats

application/json, text/json

Sample:
{
  "billingPeriodDefinitionId": 1,
  "paymentSchedules": [
    {
      "amount": 1.0,
      "daysDueAfterTerm": 2
    },
    {
      "amount": 1.0,
      "daysDueAfterTerm": 2
    }
  ]
}

Response Information

Resource Description

Collection of Common.Dto.Get.BillingPeriodPaymentSchedule
NameDescriptionTypeAdditional information
amount

decimal number

None.

daysDueAfterTerm

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "amount": 1.0,
    "daysDueAfterTerm": 2
  },
  {
    "amount": 1.0,
    "daysDueAfterTerm": 2
  }
]