Web app fixes and BIN data enhancements
This release includes several bug fixes and enhancements across the web app and API. Here are the highlights:
Web app
These changes impact PartnerHub, PayHub, or both.
- Fixed a bug with pagination in reporting components. Pagination now works as expected.
- Fixed a bug that caused the “Add Customer” window to close immediately when creating customer from an invoice. Adding a customer from an invoice now works as expected.
- Fixed a bug that prevented autopay exports from the web apps in sandbox. Autopay exports now work as expected in PartnerHub and PayHub.
- Fixed a bug that kept the “City” field from autopopulating while creating an organization. The field now populates as expected.
- Fixed a bug that caused boarding application dates to display inconsistently. Dates now work as expected.
API
Added a binData
object to the API response for these endpoints:
- /TokenStorage/{methodId} GET
- /MoneyIn/details/{transId} GET
- /Query/transactions/entry GET
- /Customer/customerId GET
This binData
object displays important information about a payment card’s type and issuer, and includes the following fields:
binMatchedLength
: The number of characters from the beginning of the card number that were matched against a Bank Identification Number (BIN) or the Card Range table.binCardBrand
: The card brand. For example, Visa, Mastercard, American Express, DiscoverbinCardType
: The type of card: Credit or Debit.binCardCategory
: The category of the card, which indicates the card product. For example: Standard, Gold, Platinum, and so on. ThebinCardCategory
for prepaid cards is markedPREPAID
. Examples:- GOLD
- PREPAID BUSINESS
- PLATINUM TRAVEL
- PREPAID RELOADABLE
binCardIssuer
: The name of the financial institution that issued the card.binCardIssuerCountry
: The issuing financial institution’s country name.binCardIssuerCountryCodeA2
: The issuing financial institution’s two-character ISO country code. See this resource for a list of codes.binCardIssuerCountryNumber
: The issuing financial institution’s ISO standard numeric country code. See this resource for a list of codes.