Skip to main content
GET
/
api
/
dashboard
/
payment-methods
List Payment Methods
curl --request GET \
  --url https://api.example.com/api/dashboard/payment-methods
{
  "methods": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "merchant_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "method": "stripe",
      "enabled": true,
      "display_order": 123,
      "config": {},
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "display_name": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.stella-commerce.com/llms.txt

Use this file to discover all available pages before exploring further.

Headers

authorization
string | null
X-API-Key
string | null
X-Stella-Merchant-Id
string | null

Response

Successful Response

Top-level dashboard GET response. Always returns 3 rows: one per supported method. Missing rows are synthesised as enabled=false, config={} placeholders so the UI can render a "Set up" state without distinguishing 'never configured' from 'configured but disabled'.

methods
PaymentMethodConfigResponse · object[]
required