Missing Credit card info when using blackbaud checkout

Hi everyone

We are using the blackbaud checkout api and the payment api to take donations online.

Everything works fine Payment is taken, donor details including fund details are all added to BB fine.

However credit card details do not show up. Any idea why this could be

11e9327661d21aa8f76b579b985b0e2e-huge-sc

Comments

  • Heather Templeton
    Heather Templeton Blackbaud Employee
    Tenth Anniversary Name Dropper Participant Facilitator 1

    @Qamar Ramzan just to confirm, is this a screenshot of the tile in RE NXT? And are using the RENXT Gift API to record the Gift in RE NXT? If not how are you recording within RE NXT?

  • @Heather Templeton
    Hi Heather,

    That is correct. We are using RE NXT and the gift api

  • Heather Templeton
    Heather Templeton Blackbaud Employee
    Tenth Anniversary Name Dropper Participant Facilitator 1

    @Qamar Ramzan Thanks! you need to make sure you are sending in these fields when creating the Gift via the API. bbps_transaction_id and the checkout_transaction_id, and if recurring, the account_token. These properties are on the PaymentAdd model.

    The tile you are showing fetches information from Payments when it is displayed.

    Let me know if this works for you.


  • @Heather Templeton
    Hi Heather,

    Thanks for this. Just to further clarify we are also using BB Checkout.

    Can you point me to any documentation that details this part of the process. I don't see any reference to bbps_transaction_id!

    Edited:

    Thank you found the information… Linked below for anyone else who may need it


  • @Heather Templeton
    Hi Heather,

    Sorry, Still not clear where I grab the bbps_transaction_id value?

    Are the bbps_transaction_id and the checkout_transaction_id both the the same.

    I.e are they the same id you get back from a successful checkout transaction?

    so would my code look something like this

    $payments[] = [
    'payment_method' => 'CreditCard',
    'checkout_transaction_id' => $checkout_transaction_id,
    'bbs_transaction_id' => $checkout_transaction_id,
    ];

  • Heather Templeton
    Heather Templeton Blackbaud Employee
    Tenth Anniversary Name Dropper Participant Facilitator 1

    @Qamar Ramzan

    Hey Qamar,

    Since you are only using checkout, then just set the checkout transaction id. This will be enough to pull back information within RE NXT for the Payments Tile.

  • @Heather Templeton
    So we have set up correctly but we are not getting the cc details saved to the tile.

    Is there anything else that we need to do?

  • Heather Templeton
    Heather Templeton Blackbaud Employee
    Tenth Anniversary Name Dropper Participant Facilitator 1

    @Qamar Ramzan when you save the Gift via the Gift API, then you also need to save the checkout transaction ID via the PaymentsAdd off the Gift.

    The checkout object should give you checkout transaction Id.

    You also need to make sure you set PaymentMethod as CreditCard or DirectDebit.

    These two fields should be enough for the Tile to populate with the other data.

  • @Heather Templeton
    Yep, that is exactly what we are doing.

    this is our code…

    $payments = array();

    $payments[] = [

    'payment_method' => 'CreditCard',

    'checkout_transaction_id' => $checkout_transaction_id,

    ];

  • Heather Templeton
    Heather Templeton Blackbaud Employee
    Tenth Anniversary Name Dropper Participant Facilitator 1

    Thanks @Qamar Ramzan! I confirmed that test transactions should also get a checkout transaction ID, so it looks like everything should be working correctly. Can you file an issue with support and provide some checkout transaction IDs that aren't working? I will pick up the issue and research on our side then correspond via the support ticket. - Heather

  • @Heather Templeton
    Thank you heather,
    I'll do that?

  • SOLVED

    So with @Heather Templeton help this worked.

    $payments[] = [
    'payment_method' => 'CreditCard',
    'checkout_transaction_id' => $checkout_transaction_id, // the authorization_token
    'bbps_transaction_id' => $bbps_transaction_id, // the bbps_transaction_id
    ];

Categories