Skip to main content
GET
/
plugins
/
{id}
Get plugin details
curl --request GET \
  --url https://api.dualship.run/plugins/{id} \
  --header 'Authorization: Bearer <token>'
{
  "category": "payment",
  "config": {},
  "description": "Process payments via Stripe",
  "enabled": true,
  "id": "stripe-payment",
  "name": "Stripe Payment",
  "version": "1.0.0"
}

Authorizations

Authorization
string
header
required

JWT Bearer token authentication

Path Parameters

id
string
required

Plugin ID

Response

Plugin details

Detailed plugin information

category
string
Example:

"payment"

config
object
description
string
Example:

"Process payments via Stripe"

enabled
boolean
Example:

true

id
string
Example:

"stripe-payment"

name
string
Example:

"Stripe Payment"

version
string
Example:

"1.0.0"