PUT v1/Payment/GetCardInfoFromBin

Gets information about a card (ex. debit or credit) using BIN (first six numbers).

Request Information

Parameters (ParameterName * = required)

Name
Description
Sample Value
BinNumber *
First 6 numbers of a credit or debit card
487309
IgnoreIssuingCountry
No description available
Not available

Response Information

Response body formats

application/json, text/json

Sample:
{
  "paymentMethod": "Any",
  "cardBrand": "NotApplicable",
  "issuingBankCountryCode": "sample string 1",
  "cardBinAlert": "None",
  "issuerName": "sample string 2"
}

application/xml, text/xml

Sample:
<PaymentCardBinInfoResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ria.Digital.WebServices.DataModels">
  <_x003C_CardBinAlert_x003E_k__BackingField>None</_x003C_CardBinAlert_x003E_k__BackingField>
  <_x003C_CardBrand_x003E_k__BackingField>NotApplicable</_x003C_CardBrand_x003E_k__BackingField>
  <_x003C_IssuerName_x003E_k__BackingField>sample string 2</_x003C_IssuerName_x003E_k__BackingField>
  <_x003C_IssuingBankCountryCode_x003E_k__BackingField>sample string 1</_x003C_IssuingBankCountryCode_x003E_k__BackingField>
  <_x003C_PaymentMethod_x003E_k__BackingField>Any</_x003C_PaymentMethod_x003E_k__BackingField>
</PaymentCardBinInfoResponse>