POST api/renewal/add
Request Information
URI Parameters
None.
Body Parameters
Collection of RenewalConfigEntity| Name | Description | Type | Additional information |
|---|---|---|---|
| RenewalConfigId | integer |
None. |
|
| RenewalDate | date |
None. |
|
| Price | decimal number |
None. |
|
| VendorId | integer |
None. |
|
| LocationId | integer |
None. |
|
| Active | boolean |
None. |
|
| CreatedTime | date |
None. |
|
| UpdatedTime | date |
None. |
|
| LocationName | string |
None. |
|
| PaymentReceivedDate | date |
None. |
|
| AmountReceived | decimal number |
None. |
|
| IsPaymentReceived | boolean |
None. |
|
| ReferenceNo | string |
None. |
|
| NoOfDaysToRemind | integer |
None. |
|
| PaymentType | string |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"RenewalConfigId": 1,
"RenewalDate": "2025-12-31T16:37:49.909396+05:30",
"Price": 3.0,
"VendorId": 4,
"LocationId": 5,
"Active": true,
"CreatedTime": "2025-12-31T16:37:49.909396+05:30",
"UpdatedTime": "2025-12-31T16:37:49.909396+05:30",
"LocationName": "sample string 8",
"PaymentReceivedDate": "2025-12-31T16:37:49.909396+05:30",
"AmountReceived": 9.0,
"IsPaymentReceived": true,
"ReferenceNo": "sample string 11",
"NoOfDaysToRemind": 12,
"PaymentType": "sample string 13"
},
{
"RenewalConfigId": 1,
"RenewalDate": "2025-12-31T16:37:49.909396+05:30",
"Price": 3.0,
"VendorId": 4,
"LocationId": 5,
"Active": true,
"CreatedTime": "2025-12-31T16:37:49.909396+05:30",
"UpdatedTime": "2025-12-31T16:37:49.909396+05:30",
"LocationName": "sample string 8",
"PaymentReceivedDate": "2025-12-31T16:37:49.909396+05:30",
"AmountReceived": 9.0,
"IsPaymentReceived": true,
"ReferenceNo": "sample string 11",
"NoOfDaysToRemind": 12,
"PaymentType": "sample string 13"
}
]
application/xml, text/xml
Sample:
<ArrayOfRenewalConfigEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/pos_crm_api_DAL.Entities">
<RenewalConfigEntity>
<Active>true</Active>
<AmountReceived>9</AmountReceived>
<CreatedTime>2025-12-31T16:37:49.909396+05:30</CreatedTime>
<IsPaymentReceived>true</IsPaymentReceived>
<LocationId>5</LocationId>
<LocationName>sample string 8</LocationName>
<NoOfDaysToRemind>12</NoOfDaysToRemind>
<PaymentReceivedDate>2025-12-31T16:37:49.909396+05:30</PaymentReceivedDate>
<PaymentType>sample string 13</PaymentType>
<Price>3</Price>
<ReferenceNo>sample string 11</ReferenceNo>
<RenewalConfigId>1</RenewalConfigId>
<RenewalDate>2025-12-31T16:37:49.909396+05:30</RenewalDate>
<UpdatedTime>2025-12-31T16:37:49.909396+05:30</UpdatedTime>
<VendorId>4</VendorId>
</RenewalConfigEntity>
<RenewalConfigEntity>
<Active>true</Active>
<AmountReceived>9</AmountReceived>
<CreatedTime>2025-12-31T16:37:49.909396+05:30</CreatedTime>
<IsPaymentReceived>true</IsPaymentReceived>
<LocationId>5</LocationId>
<LocationName>sample string 8</LocationName>
<NoOfDaysToRemind>12</NoOfDaysToRemind>
<PaymentReceivedDate>2025-12-31T16:37:49.909396+05:30</PaymentReceivedDate>
<PaymentType>sample string 13</PaymentType>
<Price>3</Price>
<ReferenceNo>sample string 11</ReferenceNo>
<RenewalConfigId>1</RenewalConfigId>
<RenewalDate>2025-12-31T16:37:49.909396+05:30</RenewalDate>
<UpdatedTime>2025-12-31T16:37:49.909396+05:30</UpdatedTime>
<VendorId>4</VendorId>
</RenewalConfigEntity>
</ArrayOfRenewalConfigEntity>
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. |