eBay · Schema
FundingSource
This type provided details on the funding source for the transfer.
AuctionsCommerceProductsMarketplaceFortune 500
Properties
| Name | Type | Description |
|---|---|---|
| brand | string | The brand name of the credit card or the name of the financial institution that is the source of payment. This field may not be populated for other funding sources. |
| memo | string | This field provides a note about the funding source. If the seller's credit card or bank account is the funding source, this field might contain the last four digits of the credit card or bank account |
| type | string | The string value returned here indicates the funding source. Possible values include the following:
|
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/FundingSource",
"title": "FundingSource",
"type": "object",
"properties": {
"brand": {
"type": "string",
"description": "The brand name of the credit card or the name of the financial institution that is the source of payment. This field may not be populated for other funding sources."
},
"memo": {
"type": "string",
"description": "This field provides a note about the funding source. If the seller's credit card or bank account is the funding source, this field might contain the last four digits of the credit card or bank account. This field may also be returned as null."
},
"type": {
"type": "string",
"description": "The string value returned here indicates the funding source. Possible values include the following:<ul><li><code>AVAILABLE_FUNDS</code>: transfer is funded with seller payout funds</li><li><code>CREDIT_CARD</code>: transfer is funded with seller's credit card</li><li><code>BANK</code>: transfer is funded with a direct debit to seller's bank account on file with eBay</li><li><code>PAY_UPON_INVOICE</code>: eBay will bill the seller for the transfer on the monthly invoice</li></ul>"
}
},
"description": "This type provided details on the funding source for the transfer."
}