Last modified: November 18, 2025
You can use the API endpoints listed below to create, update, and delete commerce subscriptions in an account.
Prerequisites
To use these APIs, the account must be set up to collect payments through either HubSpot payments or Stripe payment processing.Scope Requirements
Based on your use-case, you’ll need to ensure that your app has authorized the following scopes:crm.objects.subscriptions.read: grants access to view details about existing subscriptions.crm.objects.subscriptions.write: grants access to create, update, and delete subscriptions.crm.schemas.subscriptions.read: view details about property settings for subscriptions.crm.objects.line_items.read: grants access to view details about existing line items.crm.objects.line_items.write: grants access to create, update, and delete line items.crm.schemas.line_items.read: view details about property settings for line items.
Create a subscription with a line item
To create a subscription, you’ll first need to create a line item, which you’ll then associate with the subscription. Once associated, you can associate additional CRM records such as contacts or companies with your subscription.Create a line item
To create a line item, make aPOST request to /crm/v3/objects/line_items. In the body of your request, include the line item’s details, such as its name, quantity, and price.
Create a subscription
To create a subscription, make aPOST request to /crm/v3/objects/subscriptions. In the body of your request, include any details about your subscription, such as its name, collection process, and currency code. A list of common properties is provided in the table below.
By default, a subscription is non-billable, which means its hs_invoice_creation property is set to "off". Once your subscription has been created, you can set it to billable by following the instructions in the sections below.
An example request body for a billable subscription is provided below:
Associate a subscription with your line item
With your subscription created, you can associate it with the line item you created. To create this association, make aPUT request to /crm/v4/objects/subscriptions/{subscriptionId}/associations/line_item/{lineItemId}, using the ID of your subscription as the subscriptionId and the ID of your line item as the lineItemId.
In the request body, include the associationCategory and associationTypeId shown in the code block below that specifies the Subscription to Line Item association:
Associate a subscription with a CRM record
Now that your subscription is associated with a line item, you can also associate it with other CRM records, such as a contact or company. Learn more about the associations API in this article, which provides a full list of association type ID values. For example, if you wanted to associate your subscription with a contact, you would make aPUT request to /crm/v4/objects/subscriptions/{subscriptionId}/associations/contact/{contactId}, using the ID of your subscription as the subscriptionId and the ID of the contact as the contactId.
In the request body, include the associationCategory and associationTypeId shown below that specifies the Subscription to Contact association:
Make a subscription billable
To set the subscription as billable, make aPATCH request to /crm/v3/objects/subscriptions/{subscriptionId} and set the hs_invoice_creation property to "on" in the request body.
The following properties can updated on a billable subscription once it’s been created:
hs_namehs_ownerhs_automatically_email_invoiceshs_allowed_payment_methodshs_collect_address_typeshs_invoice_commentshs_languagehs_localehs_namehs_net_payment_termshs_recipient_billing_addresshs_recipient_billing_address2hs_recipient_billing_cityhs_recipient_billing_countryhs_recipient_billing_statehs_recipient_billing_ziphs_payment_enabledhs_tax_idshubspot_owner_id
Retrieve subscriptions
Depending on the information you need, there are a few ways to retrieve subscriptions:- To retrieve all subscriptions, make a
GETrequest tocrm/v3/objects/subscriptions. - To retrieve a specific subscription, make a
GETrequest to the above URL and specify a subscription ID. For example:crm/v3/objects/subscriptions/41112146008. - To retrieve subscriptions that meet a specific set of criteria, you can make a
POSTrequest to the search endpoint and include filters in the request body. See an example of using the search endpoint below.
Properties
To return specific properties, include aproperties query parameter in the request URL along with comma-separated property names. For example, making a GET request to the following URL would result in the response below:
crm/v3/objects/subscriptions?properties=hs_status,hs_last_payment_amount
GET request to crm/v3/properties/subscriptions. Learn more about using the properties API.
Below are some common subscription properties that you may want to query.
| Property name | Label in UI | Description |
|---|---|---|
hs_status | Status | The current status of the subscription. Values include:
|
hs_recurring_billing_start_date | Start date | The date that the subscription is scheduled to start. |
hs_last_payment_amount | Last payment amount | The amount that was charged during the most recent billing period. |
hs_next_payment_amount | Next payment amount | The amount that will be charged at the start of the next billing period. |
hs_next_payment_due_date | Next payment due date | The date that the next payment is due. |
Search for subscriptions by properties
You can use the search endpoint to retrieve subscriptions that meet a specific set of filter criteria. This will be aPOST request that includes your filter criteria in the request body.
For example, to search for all currently active subscriptions, you would make a POST request to crm/v3/objects/subscriptions/search with the following request body:
filters array specifies the search criteria, while the properties array specifies which properties to return.
Associations
While you cannot set associations using this API, you can retrieve association information by making a GET request to the following URL:crm/v3/objects/subscriptions/{hs_object_id}/associations/{associatedObjectName}
Associated objects can include contacts, companies, deals, quotes, line items, payments, discounts, fees, and taxes. These associations are typically set by the payment link or quote associated with the initial subscription payment. To manage these associations, you can update the subscription in HubSpot.
Below is an example of how you might use this API combined with another API to get a specific set of association information.
Retrieving a subscription with associated line items
To retrieve a subscription and the line items associated with it, make aGET request to:
/crm/v3/objects/subscriptions/{hs_object_id}/associations/line_items
This will return the IDs of the currently associated line items, along with meta information about the association type.
POST request:
/crm/v3/objects/line_items/batch/read
Update a subscription
To update other properties of a subscription after you’ve created it, you can make aPATCH request to /crm/v3/objects/subscriptions/{subscriptionId}, using the ID of the subscription as the subscriptionId, and including any fields you want to change in the properties field of the request body.
For example, the following request body would change several address fields for the subscription:
Delete a subscription
To delete a subscription, make aDELETE request to /crm/v3/objects/subscriptions/{subscriptionId} using the ID of the subscription you want to delete as the subscriptionId:
- If you’re attempting to delete a billable subscription, keep in mind that you can only delete subscriptions that have expired or that’ve been cancelled.
- All non-billable subscriptions can be deleted, regardless of their status.
Pause a subscription
To pause a subscription, make aPOST request to /payments-subscriptions/v1/subscriptions/crm/{subscriptionId}/pause using the ID of the subscription you want to pause as the subscriptionId.
Unpause a subscription
To unpause a subscription, make aPOST request to /payments-subscriptions/v1/subscriptions/crm/{subscriptionId}/unpause using the ID of the subscription you want to unpause as the subscriptionId.
Cancel a subscription
To cancel a subscription, make aPOST request to /payments-subscriptions/v1/subscriptions/crm/{subscriptionId}/cancel using the ID of the subscription you want to cancel as the subscriptionId.