Update Bank Information
Endpoint: https://rest.virtualincentives.com/{version}/{format}/payout/{id}/bank
Method: PUT
Definitions
Field | Type | Description |
---|---|---|
bank | object | Account holder's checking account or debit card information in which payouts will be sent. |
type | string | Type of payout destination. Options are bank_account or debit_card. |
account_number | integer | Account number associated with the account holder's checking account. |
routing_number | integer | Routing number associated with the account holder's checking account. |
card_number | integer | 16 digit card number associated with the account holder's debit card. |
expiration | integer | 4 digit expiration associated with the account holder's debit card. Format: MMYY |
cvv | integer | 3 digit security code associated with the account holder's debit card. |
Examples
Request XML
<bank>
<type>debit_card</type>
<card_number>4000056655665556</card_number>
<expiration>1228</expiration>
<cvv>011</cvv>
</bank>
Request JSON
{
"bank": {
"type": "bank_account",
"account_number": 000000123456789,
"routing_number": 987654321
}
}
Response XML
<bank>
<type>debit_card</type>
<card_number>4000056655665556</card_number>
<expiration>1228</expiration>
<cvv>011</cvv>
</bank>
Response JSON
{
"bank": {
"type": "bank_account",
"account_number": 000000123456789,
"routing_number": 987654321
}
}
Updated over 1 year ago