Apps
List available apps
List available apps of the app marketplace.
get/api/v1/marketplace/listings
Query parameters
pageinteger
Page index.
Default is 1.
pageSizeinteger
The maximum number of items per page.
Default is 100.
Response
The request has succeeded.
Example response
{
"totalCount": 500,
"page": 1,
"pageSize": 100,
"items": [
{
"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"
]
}
]
}