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
17 changes: 9 additions & 8 deletions openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -284,26 +284,27 @@
"schema": {
"type": "object",
"properties": {
"paymentMethodId": {
"tokenId": {
"type": "string",
"format": "uuid",
"description": "ID of the payment method to use for the payment. If not specified, the customer's default payment method is used, if present."
},
"description": "ID of the tokenized payment method to use for the charge."
}
},
"required": [
"paymentMethodId"
"tokenId"
],
"oneOf": [
{
"title": "Existing payment request",
"properties": {
"intentId": {
"paymentRequestId": {
"type": "string",
"format": "uuid"
"format": "uuid",
"description": "UUID of the existing payment request to charge."
}
},
"required": [
"intentId"
"paymentRequestId"
]
},
{
Expand Down Expand Up @@ -3114,7 +3115,7 @@
"card",
"bancomat_pay"
]
},
}
},
"oneOf": [
{
Expand Down