Skip to main content
GET
/
products
/
{productCode}
Retrieve a product definition
curl --request GET \
  --url https://sandbox-api.finpace.example/v1/products/{productCode} \
  --header 'Authorization: Bearer <token>'
{
  "productCode": "SME.CA.STANDARD",
  "name": "SME Current Account Standard",
  "productFamily": "account",
  "status": "draft",
  "currencyRestrictions": [
    "EUR"
  ],
  "features": [
    "<string>"
  ],
  "pricingSummary": {
    "baseRateType": "variable",
    "fees": [
      "account-maintenance"
    ]
  }
}

Authorizations

Authorization
string
header
required

OAuth 2.0 with client credentials for machine integrations and authorization code for delegated user sessions.

Headers

X-Request-Id
string

Caller-generated correlation identifier used for tracing.

Maximum string length: 80

Path Parameters

productCode
string
required

Response

Product returned

productCode
string
required
Example:

"SME.CA.STANDARD"

name
string
required
Example:

"SME Current Account Standard"

productFamily
enum<string>
required
Available options:
account,
overdraft,
corporate-loan,
consumer-loan,
bundle
status
enum<string>
required
Available options:
draft,
active,
retired
currencyRestrictions
string[]
features
string[]
pricingSummary
object