POST
/
api
/
subscriptions
/
{subscription_id}
/
addons
/
{addon_id}
/
cancel
/
curl --request POST \
  --url https://api.uselotus.io/api/subscriptions/{subscription_id}/addons/{addon_id}/cancel/ \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "flat_fee_behavior": "refund",
  "usage_behavior": "bill_full",
  "invoicing_behavior": "add_to_next_invoice"
}'
[
  {
    "addon_subscription_id": "<string>",
    "customer": {
      "customer_name": "<string>",
      "email": "jsmith@example.com",
      "customer_id": "<string>"
    },
    "addon": {
      "addon_name": "<string>",
      "addon_id": "<string>",
      "addon_type": "flat",
      "billing_frequency": "one_time"
    },
    "start_date": "2023-11-07T05:31:56Z",
    "end_date": "2023-11-07T05:31:56Z",
    "parent": {
      "fully_billed": true,
      "plan_detail": {
        "plan_name": "<string>",
        "plan_id": "<string>",
        "version_id": "<string>",
        "version": 123
      },
      "subscription_id": "<string>",
      "metadata": {},
      "subscription_filters": [
        {
          "value": "<string>",
          "property_name": "<string>"
        }
      ],
      "addons": [
        {
          "addon_subscription_id": "<string>",
          "start_date": "2023-11-07T05:31:56Z",
          "end_date": "2023-11-07T05:31:56Z",
          "addon": {
            "addon_name": "<string>",
            "addon_id": "<string>",
            "addon_type": "flat",
            "billing_frequency": "one_time"
          },
          "fully_billed": true
        }
      ],
      "is_new": true,
      "customer": {
        "customer_name": "<string>",
        "email": "jsmith@example.com",
        "customer_id": "<string>"
      },
      "billing_plan": {
        "plan_name": "<string>",
        "plan_id": "<string>",
        "version_id": "<string>",
        "version": 123
      },
      "start_date": "2023-11-07T05:31:56Z",
      "end_date": "2023-11-07T05:31:56Z",
      "auto_renew": true
    },
    "fully_billed": true,
    "auto_renew": true,
    "metadata": {}
  }
]
lotus.cancel_addon(
  subscription_id='sub_e953bfbf42a442ca90079c8f1656d306',
  addon_id='addon_5af61a194ca144478fb2721dd34c9049',
  flat_fee_behavior='charge_prorated',
  invoicing_behavior='invoice_now'
)

Authorizations

Authorization
string
headerrequired

Token-based authentication with required prefix "Token"

Path Parameters

addon_id
string
required

The ID of the addon within the subscription update.

subscription_id
string
required

The ID of the subscription to update.

Body

flat_fee_behavior
enum<string> | null

When canceling a subscription, the behavior used to calculate the flat fee. If null or not provided, the charge's default behavior will be used according to the subscription's start and end dates. If charge_full, the full flat fee will be charged, regardless of the duration of the subscription. If refund, the flat fee will not be charged. If charge_prorated, the prorated flat fee will be charged.

  • refund - Refund
  • charge_prorated - Prorate
  • charge_full - Charge Full
Available options:
refund,
charge_prorated,
charge_full,
usage_behavior
enum<string>
default: bill_full

If bill_full, current usage will be billed on the invoice. If bill_none, current unbilled usage will be dropped from the invoice. Defaults to bill_full.

  • bill_full - Bill Full
  • bill_none - Bill None
Available options:
bill_full,
bill_none
invoicing_behavior
enum<string>
default: invoice_now

Whether to invoice now or invoice at the end of the billing period. Defaults to invoice now.

  • add_to_next_invoice - Add to Next Invoice
  • invoice_now - Invoice Now
Available options:
add_to_next_invoice,
invoice_now

Response

200 - application/json
addon_subscription_id
string
required
customer
object
required
addon
object
required
start_date
string
required

The time the subscription starts. This will be a string in yyyy-mm-dd HH:mm:ss format in UTC time.

end_date
string
required

The time the subscription starts. This will be a string in yyyy-mm-dd HH:mm:ss format in UTC time.

parent
object
required
fully_billed
boolean
required
auto_renew
boolean
required

Whether the subscription automatically renews. Defaults to true.

metadata
object
required