walletFundingInstructions

The walletFundingInstructions query fetches the instructions required to send a bank payment to the wallet.

Parameters

ParameterTypeRequired
wallet_idUUIDtrue

GraphQL

query walletFundingInstructions (
    $wallet_id: UUID!
) {
    walletFundingInstructions (
        wallet_id: $wallet_id
    ) {
        type
        message
        amount
        currency
        bank_name
        bank_address1
        bank_address2
        bank_city
        bank_state_province_region
        bank_postal_code
        bank_country
        account_number
        routing_code
        swift_bic
        account_holder_name
        account_holder_address1
        account_holder_address2
        account_holder_city
        account_holder_state_province_region
        account_holder_postal_code
        account_holder_country
        reference
    }
}
Language
Click Try It! to start a request and see the response here!