No video

Create cardholders and issue cards with Stripe Issuing

Stripe Issuing lets you to create, manage, and distribute virtual and physical cards programmatically. You can create set spending limits, control expenses, set allowed business type, designate virtual cards for one-time or multiple uses.
In this episode, Stripe developer advocate CJ Avilla, demonstrates how easy it is to create a new cardholder and issue them a card.
Presenter
CJ Avilla - Developer Advocate at Stripe - / cjav_dev
Table of contents
00:00 Introduction
00:35 Install the code template with the Stripe for VSCode extension
01:00 Create a cardholder routes
02:51 Using the Stripe CLI to retrieve the cardholder information
03:04 Create the card form
04:10 Create a server endpoint to issue a card
06:29 Recap
Resources
Stripe Issuing: stripe.com/iss...
Issuing documentation: stripe.com/doc...
Stripe for VS Code extension: stripe.com/doc...
Handling asynchronous payments with Stripe and VS Code: • Handling asynchronous ...
Developer Office hours sample: github.com/str...
Node.js Express Starter: • Node.js Express Starter
Expand with stripe-node: • Expand with stripe-node
Support
If you have a question, please feel free to reach out to our support team on Discord at stripe.com/go/...
Updates
Sign up to stay updated with developer news: go.stripe.glob...
Feedback
If you have any feedback about this or other episodes, let us know: forms.gle/VjNq...
#Stripe #Payments

Пікірлер: 44

  • @kylemcarthurradio
    @kylemcarthurradio2 жыл бұрын

    Very wonderful my company recently start using stripe issuing and its working perfectly fine. Stripe is the leading payment gateway worldwide. NO CAP!

  • @RobertKline-ox6no

    @RobertKline-ox6no

    Жыл бұрын

    its the leading payment gateway

  • @ahmedyakan4837
    @ahmedyakan48375 ай бұрын

    Can I use those virtual cards in crypto platforms?

  • @mi24academy
    @mi24academyАй бұрын

    I have stripe account. Verified. But i am not able to enable issuing. i already submit request to sale team for active issuing. but i am not received any reply or message

  • @StripeDev

    @StripeDev

    Ай бұрын

    Hey there-we're sorry to hear that. Please send us an email here: support.stripe.com/express/contact/email and we'll take a look.

  • @mi24academy

    @mi24academy

    Ай бұрын

    @@StripeDev i am already submit please check.

  • @StripeDev

    @StripeDev

    Ай бұрын

    Thanks for the confirmation. A specialist team will look into this and get back to you.

  • @legion-inc
    @legion-inc Жыл бұрын

    Good video ! Good explanations !

  • @FinanceConsumer
    @FinanceConsumer4 ай бұрын

    i would love to build my own fintech bank,card,savings,account,secured credit card, etc can i do that with stripe

  • @StripeDev

    @StripeDev

    4 ай бұрын

    Hey there-you aren't able to use Stripe as a bank as we only facilitate payment processing services.

  • @user-jn2id3qs3p
    @user-jn2id3qs3p2 жыл бұрын

    Hey, I want to know if I can still apply for charter from the United States, because I haven't heard from you since I contacted the salesperson in Stripe three days ago.

  • @ahmedallali5327
    @ahmedallali53272 жыл бұрын

    Can we use Stripe Virtual cards to buy stuff online?? I thought stripe is just a payment gateway. If so is there an easy way to get a virtual card other than the way you showed in this video, this looks very complicated

  • @wikivid6907
    @wikivid69072 жыл бұрын

    4:06 - 4:10 you mention you recommend that we only use the Dashboard or Issuing Elements to retrieve card information? I wasn't able to view any info on Stripe Issuing Elements. Can you share some resources where I can take a look?

  • @StripeDev

    @StripeDev

    2 жыл бұрын

    Hi there! 👋 You can find our issuing docs here: stripe.com/docs/issuing

  • @wikivid6907

    @wikivid6907

    2 жыл бұрын

    @@StripeDev I don't see anything about Issuing Elements in the docs. Are you referring that we shouldn't be using expand to view the full card information? I am a little bit confused. I only see Payment/Card Elements, but not issuing elements What if I want to display the card to my user? How would I go about doing that without worrying about PCI Compliance?

  • @StripeDev

    @StripeDev

    2 жыл бұрын

    Great question. Issuing elements is still beta, we will be made available soon. You should avoid expanding and viewing the full details to avoid PCI burden. The issuing element will load the details securely from stripe instead of their server.

  • @wikivid6907

    @wikivid6907

    2 жыл бұрын

    ​@@StripeDev Ok got it. That's what I was asking for. As far as displaying info for my user Is the following Ok to display while still learning and going through PCI Compliance Information - last4 - Expiration date Are these Ok to display for my user?

  • @StripeDev

    @StripeDev

    2 жыл бұрын

    Information like this is not subject to PCI-compliance. You can read more about that here: stripe.com/docs/security/guide#out-of-scope-card-data

  • @brianhardman4377
    @brianhardman43772 жыл бұрын

    Good day, is it possible to view created cards in a Graph format, when they was created and how many? Thanks.😀

  • @StripeDev

    @StripeDev

    2 жыл бұрын

    Hi Brian-while this isn't directly available to do, you could go to the dashboard.stripe.com/test/issuing/cards ‘Overview’ page and Export the file to do a quick Pivot by looking at Created (UTC). Alternatively, you could use the Issuing API to list them: stripe.com/docs/api/issuing/cards/list#list_issuing_cards-created with created date and create a table that way.

  • @user-dw8ok5sw3p
    @user-dw8ok5sw3p Жыл бұрын

    Is issuing API opened for development environment? It seems to contact sales team. What if we want to test it? How can we do?

  • @StripeDev

    @StripeDev

    Жыл бұрын

    Hey! The Issuing API is not currently opened for development environment.

  • @AbuBakr1
    @AbuBakr12 жыл бұрын

    Hello please, is that NodeJs you used for this example?

  • @StripeDev

    @StripeDev

    2 жыл бұрын

    Hey there! Yes, we're using Express with 'stripe-node' in the video for the backend component: github.com/stripe/stripe-node. Let us know if you have any more questions. 😊

  • @seb2435
    @seb24352 жыл бұрын

    Hey, was wondering how one can best collect the full card details (incl card number) using python? stripe.issuing.Card.retrieve(card["id"]) doesn't seem to work?

  • @StripeDev

    @StripeDev

    2 жыл бұрын

    Hey Seb-we explain how to retrieve virtual card details here: stripe.com/docs/issuing/cards/virtual. Let us know if this helps!

  • @seb2435

    @seb2435

    2 жыл бұрын

    @@StripeDev You are amazing. Thank you so much.

  • @StripeDev

    @StripeDev

    2 жыл бұрын

    No problem!

  • @D33PTR

    @D33PTR

    2 жыл бұрын

    @@seb2435 how can I contact you please mate

  • @RobertKline-ox6no
    @RobertKline-ox6no Жыл бұрын

    i have a problem during integration, whenever a user fund card from wallet balance , it goes to every users account , i need help pls

  • @StripeDev

    @StripeDev

    Жыл бұрын

    Hi Robert-we'd recommend reaching out to us via our support channels so we can help dig into this for you: support.stripe.com/contact

  • @michaelsonny1374

    @michaelsonny1374

    Жыл бұрын

    @@StripeDev ok thanks i have just made contact with support to help me resolve this issue

  • @mi24academy

    @mi24academy

    Ай бұрын

    do you have website that you provide virtual card service? please give me your website link

  • @edwardalmanzar8382
    @edwardalmanzar83822 жыл бұрын

    peace ✌

  • @tosstu935
    @tosstu935 Жыл бұрын

    do you sell stripe issuing acc? i need many

  • @michaelsonny1374
    @michaelsonny1374 Жыл бұрын

    i have integrated , but i keep having complication for funding , pls i need urgent help

  • @StripeDev

    @StripeDev

    Жыл бұрын

    Hi Michael-could you provide us with some more details on this? Feel free to reach out to us at heretohelp@stripe.com if you need assistance, we're happy to help.

  • @michaelsonny1374

    @michaelsonny1374

    Жыл бұрын

    @@StripeDev i just emailed through my stripe account , i'm not getting any help yet

  • @StripeDev

    @StripeDev

    Жыл бұрын

    We are sorry to hear that, Michael. If you emailed us our team will get back to you there ASAP.

  • @mi24academy

    @mi24academy

    Ай бұрын

    do you have website that you provide virtual card service? please give me your website link

  • @taiwojacobs3852
    @taiwojacobs3852 Жыл бұрын

    Pls how can I contact you?

  • @StripeDev

    @StripeDev

    Жыл бұрын

    Hi there-we'll be glad to direct you on where to contact, but would you mind sharing what you're looking for assistance with?

  • @stephenedwards5200
    @stephenedwards52002 жыл бұрын

    Good day, is it possible to view created cards in a Graph format, when they was created and how many? Thanks.😀

  • @StripeDev

    @StripeDev

    2 жыл бұрын

    Hey there-great question! Though there isn't a pre-made graph view, you would be able to list all Issuing Cards: stripe.com/docs/api/issuing/cards/list. Each Card has a "created" property that indicates when the card was created and you could then build a graph with that data.