v51

latestOpenAPI 3.0.0Apache 2.0raw.githubusercontent.com2026-08-011534301009.2 KB
Apps

Get app details by type

Get a marketplace listing by type.

get/api/v1/marketplace/listings/{type}

Path parameters

type'stripe' | 'sandbox' | 'custom_invoicing' required

Type of the app.

Response

The request has succeeded.

type'stripe' | 'sandbox' | 'custom_invoicing' required

Type of the app.

namestring required

The app's name.

descriptionstring required

The app's description.

installMethodsInstallMethod[] required

Install methods.

List of methods to install the app.

Example response

{
  "type": "stripe",
  "name": "Stripe",
  "description": "Stripe integration allows you to collect payments with Stripe.",
  "capabilities": [
    {
      "type": "calculateTax",
      "key": "stripe_calculate_tax",
      "name": "Calculate Tax",
      "description": "Stripe Tax calculates tax portion of the invoices."
    },
    {
      "type": "invoiceCustomers",
      "key": "stripe_invoice_customers",
      "name": "Invoice Customers",
      "description": "Stripe invoices customers with due amount."
    },
    {
      "type": "collectPayments",
      "key": "stripe_collect_payments",
      "name": "Collect Payments",
      "description": "Stripe payments collects outstanding revenue with Stripe customer's default payment method."
    }
  ],
  "installMethods": [
    "with_oauth2",
    "with_api_key"
  ]
}