Skip to content

CVV Payment Request Requirment Update #346

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Oct 19, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -598,15 +598,17 @@ paths:
-X POST -d '{
"card_number": "4111111111111111",
"expiry_month": 11,
"expiry_year": 2020
"expiry_year": 2020,
"cvv": "111"
}' \
https://api.linode.com/v4/account/credit-card
- lang: CLI
source: >
linode-cli account update-card \
--card_number 4111111111111111 \
--expiry_month 11 \
--expiry_year 2025
--expiry_year 2025 \
--cvv 111
/account/events:
x-linode-cli-command: events
get:
Expand Down Expand Up @@ -14706,6 +14708,7 @@ components:
- card_number
- expiry_month
- expiry_year
- cvv
properties:
card_number:
type: string
Expand Down Expand Up @@ -19088,9 +19091,9 @@ components:
x-linode-cli-display: 3
PaymentRequest:
type: object
description: Payment object request.
required:
- usd
description: Payment object request.
properties:
cvv:
type: string
Expand Down