POST
/
v1
/
subscriptions
/
{id}
/
update
curl --request POST \
  --url https://api.hyperline.co/v1/subscriptions/{id}/update \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "application_schedule": "immediately",
  "payment_schedule": "immediately",
  "calculation_method": "pro_rata",
  "type": "add_product",
  "payload": {
    "product_id": "<string>",
    "product_name": "<string>",
    "product_description": "<string>",
    "count": 1,
    "billing_interval_period": "days",
    "billing_interval_count": 123,
    "start_or_end": "start",
    "display_interval_dates_in_description": true,
    "type": "fee",
    "prices": [
      {
        "type": "fee",
        "amount": 123
      }
    ]
  }
}'
{
  "id": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Body

application/json

Add a new product to bill as part of the subscription.

application_schedule
enum<string>
required
Available options:
immediately
payment_schedule
enum<string>
required
Available options:
immediately,
next_invoice
calculation_method
enum<string>
required
Available options:
pro_rata,
pay_in_full,
do_not_charge
type
required
Available options:
add_product
payload
object
required

Response

201
application/json
Subscription update created
id
string
required