Properties
| Name | Type | Description |
|---|---|---|
| bin | string | The first 6 digit of the card number. Enable this field via merchant account settings. |
| commercial | boolean | If true, it indicates a commercial card. Enable this field via merchant account settings. |
| fundingSource | string | The card funding source. Valid values are: * CHARGE * CREDIT * DEBIT * DEFERRED_DEBIT * PREPAID * PREPAID_RELOADABLE * PREPAID_NONRELOADABLE > Enable this field via merchant account settings. |
| fundsAvailability | string | Indicates availability of funds. Visa: * "I" (fast funds are supported) * "N" (otherwise) Mastercard: * "I" (product type is Prepaid or Debit, or issuing country is in CEE/HGEM list) * "N" (otherwise) |
| issuerBin | string | The first 8 digit of the card number. Enable this field via merchant account settings. |
| issuingBank | string | The issuing bank of the card. |
| issuingCountry | string | The country where the card was issued from. |
| issuingCurrency | string | The currency of the card. |
| paymentMethod | string | The payment method associated with the card (e.g. visa, mc, or amex). |
| payoutEligible | string | Indicates whether a payout is eligible or not for this card. Visa: * "Y" * "N" Mastercard: * "Y" (domestic and cross-border) * "D" (only domestic) * "N" (no MoneySend) * "U" (unknown) > Returned when |
| summary | string | The last four digits of the card number. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CardBin",
"title": "CardBin",
"properties": {
"bin": {
"description": "The first 6 digit of the card number. Enable this field via merchant account settings.",
"type": "string"
},
"commercial": {
"description": "If true, it indicates a commercial card. Enable this field via merchant account settings.",
"type": "boolean"
},
"fundingSource": {
"description": "The card funding source. Valid values are:\n* CHARGE\n* CREDIT\n* DEBIT\n* DEFERRED_DEBIT\n* PREPAID\n* PREPAID_RELOADABLE\n* PREPAID_NONRELOADABLE\n> Enable this field via merchant account settings.",
"type": "string"
},
"fundsAvailability": {
"description": "Indicates availability of funds.\n\nVisa:\n* \"I\" (fast funds are supported)\n* \"N\" (otherwise)\n\nMastercard:\n* \"I\" (product type is Prepaid or Debit, or issuing country is in CEE/HGEM list)\n* \"N\" (otherwise)\n> Returned when you verify a card BIN or estimate costs, and only if `payoutEligible` is different from \"N\" or \"U\".",
"type": "string"
},
"issuerBin": {
"x-addedInVersion": "54",
"description": "The first 8 digit of the card number. Enable this field via merchant account settings.",
"type": "string"
},
"issuingBank": {
"description": "The issuing bank of the card.",
"type": "string"
},
"issuingCountry": {
"description": "The country where the card was issued from.",
"type": "string"
},
"issuingCurrency": {
"description": "The currency of the card.",
"type": "string"
},
"paymentMethod": {
"description": "The payment method associated with the card (e.g. visa, mc, or amex).",
"type": "string"
},
"payoutEligible": {
"description": "Indicates whether a payout is eligible or not for this card.\n\nVisa:\n* \"Y\"\n* \"N\"\n\nMastercard:\n* \"Y\" (domestic and cross-border)\n* \"D\" (only domestic)\n* \"N\" (no MoneySend)\n* \"U\" (unknown)\n> Returned when you verify a card BIN or estimate costs, and only if `payoutEligible` is different from \"N\" or \"U\".",
"type": "string"
},
"summary": {
"description": "The last four digits of the card number.",
"type": "string"
}
},
"type": "object"
}