Products

List Card Products

Returns a list of issuing product objects.

get/v1/issuing/products

Query parameters

page_sizeinteger required
Example:10

The maximum number of items to return per page. This number can be between 1 - 100

page_numberinteger required
Example:1

The page number to retrieve the next set of items. The number has to be greater than 1.

Headers

x-on-behalf-ofstring

Specifies the sub-account on whose behalf the request is made. This should be set to the account_id, which can be retrieved via the List Connected Accounts API. If omitted or empty, the request is executed using the master account. More information at Connected Accounts.

Response

OK - Products returned successfully.

total_pagesinteger

The total pages of available items.

total_itemsinteger

The total counts of available items.

Example response

{
  "total_pages": 10,
  "total_items": 105,
  "data": [
    {
      "product_id": "c0cef051-29c5-4796-b86a-cd5b684bfad7",
      "mode_type": "SHARE",
      "card_bin": "40963608",
      "card_form": [
        "VIR"
      ],
      "max_card_quota": 100,
      "card_scheme": "VISA",
      "no_pin_payment_amount": [
        {
          "amount": "2000",
          "currency": "USD"
        }
      ],
      "card_currency": [
        "SGD",
        "USD"
      ],
      "create_time": "2023-09-15T10:02:17+08:00",
      "update_time": "2023-09-15T10:02:17+08:00",
      "product_status": "ENABLED",
      "required_fields": [
        {
          "name": "identity",
          "type": "object",
          "required": true,
          "description": "Identity document information"
        }
      ]
    }
  ]
}

Changes