Documentation
- Getting Started
- Authentication
- Making Requests
- Resource Creation
- Searching
- Plugins
- Webhooks
Tutorials
APIs
- Activity Codes
- Archive
- Authorization
- Bank Accounts
- Contacts
- Events
- Expenses
- Fees
- Files
- Firm
- Firm Users
- Folders
- Invoices
- Layout Designs
- Layout Matter Items
- Matter Billing Configuration
- Matter Items
- Matter Types
- Matters
- Memos
- Notifications
- Plugins
- Referral Types
- Relationships
- Roles
- Staff
- Stages
- Subscription Payments
- Subscription Promotions
- Subscriptions
- GETGet all add-ons
- GETGet an add-on
- POSTAdd add-on
- DELRemove add-on
- GETGet subscriptions
- GETGet subscription
- PATCHUpdate subscription
- GETGet subscription invoices
- GETGet subscription promotions
- GETGet subscription changes
- PATCHCancel subscription
- PATCHResume subscription
- GETGet all tiers
- GETGet a tier
- GETGet tier add-ons
- PATCHSwitch product tier
- GET
- Tasks
- Users
- Webhooks
Subscriptions
Get all add-ons
Returns a list of all available add-ons with their features and pricing.
Use this endpoint to display the complete catalog of available add-ons.
GET
/
subscriptions
/
addons
curl --request GET \
--url https://api.smokeball.com/subscriptions/addons \
--header 'Authorization: <api-key>' \
--header 'x-api-key: <api-key>'
[
{
"id": "b471682e-fa17-4e46-b7fe-9b2b8fdcb3c2",
"href": "<string>",
"relation": "<string>",
"method": "GET",
"self": {
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET"
},
"smokeballId": "<string>",
"productSuite": "<string>",
"name": "Intake",
"description": "<string>",
"trialPeriodDays": 123,
"prices": [
{
"default": true,
"active": true,
"type": "Recurring",
"name": "\"$109 per user/month\"",
"amount": 5900,
"interval": "Monthly"
}
],
"createdDate": "2022-04-23T14:00:00Z",
"updatedDate": "2022-04-23T14:00:00Z"
}
]
Response
200
application/json
Successfully retrieved the list of add-ons
The response is of type object[]
.
curl --request GET \
--url https://api.smokeball.com/subscriptions/addons \
--header 'Authorization: <api-key>' \
--header 'x-api-key: <api-key>'
[
{
"id": "b471682e-fa17-4e46-b7fe-9b2b8fdcb3c2",
"href": "<string>",
"relation": "<string>",
"method": "GET",
"self": {
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET"
},
"smokeballId": "<string>",
"productSuite": "<string>",
"name": "Intake",
"description": "<string>",
"trialPeriodDays": 123,
"prices": [
{
"default": true,
"active": true,
"type": "Recurring",
"name": "\"$109 per user/month\"",
"amount": 5900,
"interval": "Monthly"
}
],
"createdDate": "2022-04-23T14:00:00Z",
"updatedDate": "2022-04-23T14:00:00Z"
}
]
Assistant
Responses are generated using AI and may contain mistakes.