Skip to content

Commit 83cd8ad

Browse files
committed
Updated API from documentation release
1 parent 7682e16 commit 83cd8ad

19 files changed

+23
-23
lines changed

api-specs/checkout/types/applications/ApplicationReference.raml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ type: Reference
44
displayName: ApplicationReference
55
discriminatorValue: application
66
description: |
7-
Reference to an [Application](/payment-connectors-applications#applications).
7+
Reference to an [Application](/connectors-and-applications#applications).
88
properties:
99
id:
1010
type: string

api-specs/checkout/types/applications/ApplicationResourceIdentifier.raml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ type: ResourceIdentifier
44
displayName: ApplicationResourceIdentifier
55
discriminatorValue: application
66
description: |
7-
Resource identifier to an [Application](/payment-connectors-applications#applications). Either `id` or `key` is required. If both are set, an [InvalidJsonInput](/errors#invalidjsoninput) error is returned.
7+
Resource identifier to an [Application](/connectors-and-applications#applications). Either `id` or `key` is required. If both are set, an [InvalidJsonInput](/errors#invalidjsoninput) error is returned.
88
properties:
99
id?:
1010
type: string

api-specs/checkout/types/coco/ReferenceTypeId.raml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ enum:
1818
payment: |
1919
References a [Payment](/../api/projects/payments#payment).
2020
application: |
21-
References an [Application](/payment-connectors-applications#applications).
21+
References an [Application](/connectors-and-applications#applications).
2222
payment-integration: |
23-
References a [Payment Integration](/payment-connectors-applications#payment-integrations).
23+
References a [Payment Integration](/connectors-and-applications#payment-integrations).

api-specs/checkout/types/error/ConnectorFailedError.raml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ type: ErrorObject
55
displayName: ConnectorFailedError
66
discriminatorValue: ConnectorFailed
77
description: |
8-
Returned when the payment [Connector](/payment-connectors-applications#payment-connectors) cannot be reached.
8+
Returned when the payment [Connector](/connectors-and-applications#payment-connectors) cannot be reached.
99
properties:
1010
code:
1111
type: string

api-specs/checkout/types/payment-integrations/PaymentIntegrationReference.raml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ type: Reference
44
displayName: PaymentIntegrationReference
55
discriminatorValue: payment-integration
66
description: |
7-
Reference to a [Payment Integration](/payment-connectors-applications#payment-integrations).
7+
Reference to a [Payment Integration](/connectors-and-applications#payment-integrations).
88
properties:
99
id:
1010
type: string

api-specs/checkout/types/payment-integrations/PaymentIntegrationResourceIdentifier.raml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ type: ResourceIdentifier
44
displayName: PaymentIntegrationResourceIdentifier
55
discriminatorValue: payment-integration
66
description: |
7-
Resource identifier to a [Payment Integration](/payment-connectors-applications#payment-integrations). Either `id` or `key` is required. If both are set, an [InvalidJsonInput](/errors#invalidjsoninput) error is returned.
7+
Resource identifier to a [Payment Integration](/connectors-and-applications#payment-integrations). Either `id` or `key` is required. If both are set, an [InvalidJsonInput](/errors#invalidjsoninput) error is returned.
88
properties:
99
id?:
1010
type: string

api-specs/checkout/types/payment-intents/PaymentIntentAction.raml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
type: object
44
displayName: PaymentIntentAction
55
description: |
6-
Depending on the action specified, Checkout requests the [payment service provider](/payment-connectors-applications#supported-psps-payment-integration-types-and-payment-methods) (PSP) to capture, refund, or cancel the authorization for the given Payment.
6+
Depending on the action specified, Checkout requests the [payment service provider](/connectors-and-applications#supported-psps-payment-integration-types-and-payment-methods) (PSP) or gift card management system to capture, refund, or cancel the authorization for the given Payment.
77
properties:
88
action:
99
type: PaymentIntentOperation

api-specs/checkout/types/payment-intents/PaymentIntentCancelAction.raml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ discriminator: action
77
discriminatorValue: cancelPayment
88
example: !include ../../../checkout/examples/payments/cancelPaymentAction.json
99
description: |
10-
Requests to [cancel the authorization](/payments-lifecycle#authorization-cancellation) for a Payment. Checkout will cancel the [Payment](/../api/projects/payments#payment) and will request the PSP to proceed with the financial process to cancel the authorization.
10+
Requests to [cancel the authorization](/payments-lifecycle#authorization-cancellation) for a Payment. Checkout will cancel the [Payment](/../api/projects/payments#payment) and will request the PSP or gift card management system to proceed with the financial process to cancel the authorization.
1111
1212
You cannot request to cancel the authorization for a Payment that has already been [captured](/payments-lifecycle#payment-capture).
1313
properties:

api-specs/checkout/types/payment-intents/PaymentIntentCaptureAction.raml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ discriminator: action
77
discriminatorValue: capturePayment
88
example: !include ../../../checkout/examples/payments/capturePaymentAction.json
99
description: |
10-
Requests to [capture](/payments-lifecycle#payment-capture) the given amount from the customer. Checkout will request the PSP to proceed with the financial process to capture the amount.
10+
Requests to [capture](/payments-lifecycle#payment-capture) the given amount from the customer. Checkout will request the PSP or gift card management system to proceed with the financial process to capture the amount.
1111
properties:
1212
action:
1313
type: string

api-specs/checkout/types/payment-intents/PaymentIntentRefundAction.raml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ discriminator: action
77
discriminatorValue: refundPayment
88
example: !include ../../../checkout/examples/payments/refundPaymentAction.json
99
description: |
10-
Requests to [refund](/payments-lifecycle#refund) the given amount to the customer. Checkout will request the PSP to proceed with the financial process to refund the amount.
10+
Requests to [refund](/payments-lifecycle#refund) the given amount to the customer. Checkout will request the PSP or gift card management system to proceed with the financial process to refund the amount.
1111
properties:
1212
action:
1313
type: string

0 commit comments

Comments
 (0)