Skip to content
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