PATCH api/admin/stores/{id}/subscription

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

StoreSubscriptionPatchBody
NameDescriptionTypeAdditional 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:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'StoreSubscriptionPatchBody'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.