[lightMode]
App Subscription Details
GET
/apps/{app_id}/subscriptions[updatedIn] 3 months ago
This endpoint allows you to fetch details of App Subscriptions per Salla Store.
Request
[message.pathParameter]
app_id
integer
required
Salla Application ID. [Salla Partners](https://salla.partners) > My Apps > Your App
Request samples
[api.label.responses]
Success(200)
Unauthorized(403)
HTTP Code: 200
Content Type : JSONapplication/json
[response.label.jsonSchema]
status
number
optional
Response Status Code
Example:
200
success
boolean
optional
Whether or not the response is successful
Default:
true
data
array[object (Subscription Detail Response) {19}]
optional
id
string
optional
Salla App ID
Example:
2032004508
app_name
string
optional
Salla App Name
Example:
BitoShip
description
string
optional
Salla App Description
Example:
BitoShip Description
app_type
enum<string>
optional
Salla App Type
Allowed values:
appshipping
Example:
shipping
categories
array[string]
optional
Salla App Categories
Allowed values:
Shipping' & 'FulfillmentAccounting & FinanceMarketingAnalyticsEmailGeolocationSite OptimizationSMSChatOthers
plan_type
enum<string>
optional
App Plan Types
Allowed values:
freeoncerecurringon_demand
Example:
recurring
plan_name
string
optional
Plan Name
Example:
Yearly
plan_period
string | null
optional
Plan Period in months
Example:
12
start_date
string | null
optional
Plan Start Date
Example:
2022-12-31
end_date
string | null
optional
Plan End Date
Example:
2023-12-31
initialization_cost
integer | null
optional
This refers to the one-time cost associated with setting up a new subscription. This cost can include things like the cost of hardware, software, and installation
Example:
10
price_before_discount
integer | null
optional
Original Price Before Discount
Example:
5
price
integer | null
optional
Original Plan Price
Example:
200
tax
number | null
optional
Tax Percentage
Example:
0.15
tax_value
number | null
optional
Tax Value
Example:
30
total
number | null
optional
Total Price Amount (tax included)
Example:
230
subscription_balance
number | null
optional
The subscription balance is the amount of balance that a Merchant owes for the App’s service.
Example:
50
coupon
object | null
optional
features
array [object {2}]
optional
[api.label.example]
Example | Free Subscription
{
"status": 200,
"success": true,
"data": [
{
"id": "657032372",
"app_name": "App 1.2",
"description": "App 1.2 App 1.2 App 1.2 App 1.2 App 1.2 App 1.2 App 1.2",
"app_type": "app",
"categories": [
"Others"
],
"plan_type": "recurring",
"plan_name": "Free",
"plan_period": null,
"start_date": null,
"end_date": null,
"initialization_cost": 0,
"price_before_discount": 0,
"price": 0,
"tax": 0,
"tax_value": 0,
"total": 0,
"subscription_balance": null,
"coupon": null,
"features": []
}
]
}
[updatedIn] 3 months ago