OpenSylo Marketplace API
  1. Marketplace Dashboard
OpenSylo Marketplace API
  • Introduction
  • Getting Started
  • OAuth 2.0 Flow
  • Webhook Integration
  • Sandbox Testing
  • Error Reference
  • Marketplace Dashboard
    • Login to the marketplace dashboard
      POST
    • View OAuth credentials
      GET
    • Regenerate client secret
      POST
  • OAuth 2.0
    • Start OAuth authorization
      GET
    • Exchange code or refresh token
      POST
    • Revoke a token
      POST
    • OAuth discovery / client metadata
      GET
  • Data Ingestion
    • Submit single merchant data
      POST
    • Submit bulk merchant data
      POST
    • Get merchant credit score
      GET
    • Integration health check
      GET
  • Loan API
    • Get active loans for a merchant
      GET
    • Get loan status
      GET
    • Validate deduction amounts
      POST
    • Bulk loan status check
      POST
  • Inbound Webhooks
    • Send repayment webhook
      POST
    • Send settlement webhook
      POST
  • Sandbox
    • Sandbox environment info
      GET
    • Get sandbox test credentials
      GET
    • Get sandbox test merchants
      GET
  • Schemas
    • DashboardLoginRequest
    • DashboardLoginResponse
    • CredentialsResponse
    • RegenerateSecretResponse
    • TokenRequest
    • TokenResponse
    • RevokeRequest
    • ClientMetadataResponse
    • MerchantIdentity
    • SalesPerformance
    • RevenueConsistency
    • FulfillmentMetrics
    • PayoutCashFlow
    • PlatformDependency
    • HistoricalCredit
    • BehavioralRisk
    • MerchantDataRequest
    • ScoreBreakdown
    • CreditScore
    • MerchantDataResponse
    • BulkMerchantDataRequest
    • BulkMerchantDataResponse
    • CreditScoreResponse
    • HealthResponse
    • ActiveLoansResponse
    • LoanStatusResponse
    • ValidateDeductionsRequest
    • ValidateDeductionsResponse
    • BulkLoanStatusRequest
    • BulkLoanStatusResponse
    • RepaymentWebhookRequest
    • SettlementWebhookRequest
    • WebhookAckResponse
    • SandboxInfoResponse
    • SandboxCredentialsResponse
    • SandboxMerchantsResponse
    • OAuthError
    • ApiError
  1. Marketplace Dashboard

View OAuth credentials

GET
/marketplace-dashboard/credentials
Retrieve your marketplace's OAuth client credentials. The client secret is masked — it was only shown in full at creation or after regeneration.

Request

Authorization
JWT Bearer
Add the parameter
Authorization
to Headers
Example:
Authorization: ********************
or

Responses

🟢200
application/json
Credentials retrieved
Body

🟠401
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.opensylo.com/marketplace-dashboard/credentials' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Success
{
    "clientId": "yourmarketplace_client_a1b2c3d4",
    "clientSecretMasked": "cs_secret_***...c3d4",
    "redirectUris": [
        "https://yourmarketplace.com/oauth/callback"
    ],
    "allowedScopes": [
        "data.share.sales",
        "data.share.fulfillment",
        "data.share.payouts",
        "data.share.risk",
        "data.share.profile",
        "credit.score.read",
        "repayment.report"
    ],
    "authorizationUrl": "https://api.opensylo.com/oauth/authorize",
    "tokenUrl": "https://api.opensylo.com/oauth/token",
    "dataIngestionUrl": "https://api.opensylo.com/api/marketplace/data/merchant"
}
Modified at 2026-01-29 23:19:05
Previous
Login to the marketplace dashboard
Next
Regenerate client secret
Built with