POST 17.0/app/tenancy/adjustenddate

Description

Adjusts and calculates the end date based on the provided request details.

URI Parameters

None.

The request containing start date, interval, duration, and other parameters for end date calculation.

Name Description Type Additional information
StartDate

date

None.

Interval

byte

None.

Duration

integer

None.

application/json, text/json

Sample:
{
  "startDate": "2025-10-28T18:04",
  "interval": 64,
  "duration": 3
}

application/xml, text/xml

Sample:
<EndDateRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <StartDate>2025-10-28T18:04:26.7841577+00:00</StartDate>
  <Interval>64</Interval>
  <Duration>3</Duration>
</EndDateRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

An IHttpActionResult containing the adjusted end date.

date

application/json, text/json

Sample:
"2025-10-28T18:04"

application/xml, text/xml

Sample:
<dateTime>2025-10-28T18:04:26.7841577+00:00</dateTime>