Salla Docs
Merchant API
  • Merchant API
  • Salla OAuth 2.0
Partner APIs
  • App API
  • Shipment API
Storefront
  • Twilight Engine
  • Twilight SDK
  • Web Components
  • Change Log
Salla CLI
Merchant API
  • Merchant API
  • Salla OAuth 2.0
Partner APIs
  • App API
  • Shipment API
Storefront
  • Twilight Engine
  • Twilight SDK
  • Web Components
  • Change Log
Salla CLI
Salla - Opensource
Salla - Developers Community
  1. Subscriptions
  • Get Started
  • Create Your First App
  • App Events
  • Settings
    • App Setting Details
      GET
    • Update App Settings
      POST
  • Subscriptions
    • App Subscription Details
      GET
    • Update Subscription Balance
      POST
  • Settlements
    • List Instant Settlements
      GET
    • Create Instant Settlement
      POST
    • Update Instant Settlement
      PUT
    • Instant Settlement Details
      GET
  1. Subscriptions

App Subscription Details

Production
https://api.salla.dev/admin/v2
Production
https://api.salla.dev/admin/v2
GET
https://api.salla.dev/admin/v2
/apps/{app_id}/subscriptions
Last modified:2024-12-24 06:42:02
This endpoint allows you to fetch details of App Subscriptions per Salla Store.

Request

Authorization
or
Path Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.salla.dev/admin/v2/apps//subscriptions'

Responses

🟢200Success
application/json
Body

Examples
{
    "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": []
        }
    ]
}
🟠403Unauthorized
Modified at 2024-12-24 06:42:02
Previous
Subscriptions
Next
Update Subscription Balance