PATCH api/admin/stores/{id}/subscription
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
StoreSubscriptionPatchBody| Name | Description | Type | Additional information |
|---|---|---|---|
| MonthlySubscriptionFee | decimal number |
None. |
|
| SubscriptionExpiresAtUtc | date |
None. |
|
| RenewOneMonth | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"monthlySubscriptionFee": 1.0,
"subscriptionExpiresAtUtc": "2026-05-17T05:05:05.2362173Z",
"renewOneMonth": true
}
application/xml, text/xml
Sample:
<StoreSubscriptionPatchBody xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Del.Api.Models.Dtos"> <MonthlySubscriptionFee>1</MonthlySubscriptionFee> <RenewOneMonth>true</RenewOneMonth> <SubscriptionExpiresAtUtc>2026-05-17T00:05:05.2362173-05:00</SubscriptionExpiresAtUtc> </StoreSubscriptionPatchBody>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.