Manage Credit Cards

How to manage credit cards in Skyvern

Manage Credit Cards

Like passwords, credit cards are managed on the Skyvern Credentials page.

Add a new credit card:

Delete a credit card:

Click the trash icon and confirm the deletion. If you do this, the credit card will be deleted from Skyvern PERMANENTLY.

Update a credit card:

Skyvern only supports adding and deleting credit cards. To update a credit card, you need to delete the existing credit card and create a new one.

API & SDK

We also have API and SDK supports for credit card management:

Create a new credit card:

1from skyvern import Skyvern
2skyvern = Skyvern(api_key="YOUR_API_KEY")
3await skyvern.create_credential(
4 name="My Credit Card",
5 credential_type="credit_card",
6 credential={
7 "card_number": "4242424242424242",
8 "card_cvv": "424",
9 "card_exp_month": "12",
10 "card_exp_year": "2028",
11 "card_brand": "visa",
12 "card_holder_name": "John Doe",
13 },
14)

Delete a credit card:

1from skyvern import Skyvern
2
3skyvern = Skyvern(api_key="YOUR_API_KEY")
4await skyvern.delete_credential(credential_id="cred_123456789")