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

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

Query Parameters

productFamily
string
status
string
pageSize
integer
default:50

Maximum number of records to return.

Required range: 1 <= x <= 200
pageToken
string

Opaque continuation token returned by a previous page.

Response

Products returned

items
object[]
pagination
object