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>"
}
Create an update to apply on an existing subscription.
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>"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Add a new product to bill as part of the subscription.
Subscription update created
The response is of type object
.
Was this page helpful?