POST api/Plan/UpdatePlanEndDate
Request Information
URI Parameters
None.
Body Parameters
Plans| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Title | string |
None. |
|
| Description | string |
None. |
|
| Amount | decimal number |
None. |
|
| DurationInMonths | integer |
None. |
|
| EndDate | date |
None. |
|
| CreatedDate | date |
None. |
|
| DeletedDate | date |
None. |
|
| ItemCode | string |
None. |
|
| Currency | string |
None. |
|
| ColumnName | string |
None. |
|
| SortDirection | string |
None. |
|
| IsSuccess | boolean |
None. |
|
| Message | string |
None. |
|
| Value | Object |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"Title": "sample string 2",
"Description": "sample string 3",
"Amount": 4.0,
"DurationInMonths": 5,
"EndDate": "2026-02-22T13:06:05.6985168+02:00",
"CreatedDate": "2026-02-22T13:06:05.6985168+02:00",
"DeletedDate": "2026-02-22T13:06:05.6985168+02:00",
"ItemCode": "sample string 7",
"Currency": "sample string 8",
"ColumnName": "sample string 9",
"SortDirection": "sample string 10",
"IsSuccess": true,
"Message": "sample string 12",
"Value": {}
}
application/xml, text/xml
Sample:
<Plans xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Domain"> <IsSuccess>true</IsSuccess> <Message>sample string 12</Message> <Value /> <Amount>4</Amount> <ColumnName>sample string 9</ColumnName> <CreatedDate>2026-02-22T13:06:05.6985168+02:00</CreatedDate> <Currency>sample string 8</Currency> <DeletedDate>2026-02-22T13:06:05.6985168+02:00</DeletedDate> <Description>sample string 3</Description> <DurationInMonths>5</DurationInMonths> <EndDate>2026-02-22T13:06:05.6985168+02:00</EndDate> <Id>1</Id> <ItemCode>sample string 7</ItemCode> <SortDirection>sample string 10</SortDirection> <Title>sample string 2</Title> </Plans>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |