mirror of
https://github.com/gcatanese/adyen-openapi.git
synced 2026-03-10 08:01:24 +00:00
spec release
This commit is contained in:
@@ -61,17 +61,6 @@
|
|||||||
"200" : {
|
"200" : {
|
||||||
"content" : {
|
"content" : {
|
||||||
"application/json" : {
|
"application/json" : {
|
||||||
"examples" : {
|
|
||||||
"balancePlatform-authentication-created-authenticated-challenge" : {
|
|
||||||
"$ref" : "#/components/examples/WebhookAck"
|
|
||||||
},
|
|
||||||
"balancePlatform-authentication-created-authenticated-frictionless" : {
|
|
||||||
"$ref" : "#/components/examples/WebhookAck"
|
|
||||||
},
|
|
||||||
"balancePlatform-authentication-created-rejected" : {
|
|
||||||
"$ref" : "#/components/examples/WebhookAck"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"schema" : {
|
"schema" : {
|
||||||
"$ref" : "#/components/schemas/BalancePlatformNotificationResponse"
|
"$ref" : "#/components/schemas/BalancePlatformNotificationResponse"
|
||||||
}
|
}
|
||||||
@@ -102,6 +91,11 @@
|
|||||||
"requestBody" : {
|
"requestBody" : {
|
||||||
"content" : {
|
"content" : {
|
||||||
"application/json" : {
|
"application/json" : {
|
||||||
|
"examples" : {
|
||||||
|
"post-balancePlatform.authentication.relayed" : {
|
||||||
|
"$ref" : "#/components/examples/post-balancePlatform.authentication.relayed-post-balancePlatform.authentication.relayed"
|
||||||
|
}
|
||||||
|
},
|
||||||
"schema" : {
|
"schema" : {
|
||||||
"$ref" : "#/components/schemas/RelayedAuthenticationRequest"
|
"$ref" : "#/components/schemas/RelayedAuthenticationRequest"
|
||||||
}
|
}
|
||||||
@@ -112,6 +106,11 @@
|
|||||||
"200" : {
|
"200" : {
|
||||||
"content" : {
|
"content" : {
|
||||||
"application/json" : {
|
"application/json" : {
|
||||||
|
"examples" : {
|
||||||
|
"post-balancePlatform.authentication.relayed" : {
|
||||||
|
"$ref" : "#/components/examples/WebhookAck"
|
||||||
|
}
|
||||||
|
},
|
||||||
"schema" : {
|
"schema" : {
|
||||||
"$ref" : "#/components/schemas/RelayedAuthenticationResponse"
|
"$ref" : "#/components/schemas/RelayedAuthenticationResponse"
|
||||||
}
|
}
|
||||||
@@ -474,10 +473,11 @@
|
|||||||
"type" : "string"
|
"type" : "string"
|
||||||
},
|
},
|
||||||
"flow" : {
|
"flow" : {
|
||||||
"description" : "The flow used in the challenge. Possible values:\n\n* **OTP_SMS**: one-time password (OTP) flow\n* **OOB**: out-of-band (OOB) flow",
|
"description" : "The flow used in the challenge. Possible values:\n\n* **PWD_OTP_PHONE_FL**: one-time password (OTP) flow via SMS\n* **PWD_OTP_EMAIL_FL**: one-time password (OTP) flow via email\n* **OOB_TRIGGER_FL**: out-of-band (OOB) flow",
|
||||||
"enum" : [
|
"enum" : [
|
||||||
"OTP_SMS",
|
"PWD_OTP_PHONE_FL",
|
||||||
"OOB"
|
"PWD_OTP_EMAIL_FL",
|
||||||
|
"OOB_TRIGGER_FL"
|
||||||
],
|
],
|
||||||
"type" : "string"
|
"type" : "string"
|
||||||
},
|
},
|
||||||
@@ -645,9 +645,11 @@
|
|||||||
},
|
},
|
||||||
"examples" : {
|
"examples" : {
|
||||||
"WebhookAck" : {
|
"WebhookAck" : {
|
||||||
"summary" : "Acknowledge Webhook",
|
"summary" : "Respond with your out-of-band authentication decision: \"proceed\" to continue, \"refused\" to refuse",
|
||||||
"value" : {
|
"value" : {
|
||||||
"notificationResponse" : "[accepted]"
|
"authenticationDecision" : {
|
||||||
|
"status" : "proceed"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"post-balancePlatform.authentication.created-balancePlatform-authentication-created-authenticated-challenge" : {
|
"post-balancePlatform.authentication.created-balancePlatform-authentication-created-authenticated-challenge" : {
|
||||||
@@ -774,6 +776,22 @@
|
|||||||
"timestamp" : "2022-12-22T15:42:03+01:00",
|
"timestamp" : "2022-12-22T15:42:03+01:00",
|
||||||
"type" : "balancePlatform.authentication.created"
|
"type" : "balancePlatform.authentication.created"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"post-balancePlatform.authentication.relayed-post-balancePlatform.authentication.relayed" : {
|
||||||
|
"summary" : "Out-of-band authentication relayed request webhook",
|
||||||
|
"description" : "Example webhook for an out-of-band authentication relayed request webhook",
|
||||||
|
"value" : {
|
||||||
|
"id" : "1ea64f8e-d1e1-4b9d-a3a2-3953e385b2c8",
|
||||||
|
"paymentInstrumentId" : "PI123ABCDEFGHIJKLMN45678",
|
||||||
|
"purchase" : {
|
||||||
|
"date" : "2025-03-06T15:17:55Z",
|
||||||
|
"merchantName" : "widgetsInc",
|
||||||
|
"originalAmount" : {
|
||||||
|
"currency" : "EUR",
|
||||||
|
"value" : 14548
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1533,6 +1533,7 @@
|
|||||||
"directDebitNotSupported",
|
"directDebitNotSupported",
|
||||||
"error",
|
"error",
|
||||||
"notEnoughBalance",
|
"notEnoughBalance",
|
||||||
|
"pending",
|
||||||
"pendingApproval",
|
"pendingApproval",
|
||||||
"pendingExecution",
|
"pendingExecution",
|
||||||
"refusedByCounterpartyBank",
|
"refusedByCounterpartyBank",
|
||||||
@@ -1815,6 +1816,7 @@
|
|||||||
"directDebitNotSupported",
|
"directDebitNotSupported",
|
||||||
"error",
|
"error",
|
||||||
"notEnoughBalance",
|
"notEnoughBalance",
|
||||||
|
"pending",
|
||||||
"pendingApproval",
|
"pendingApproval",
|
||||||
"pendingExecution",
|
"pendingExecution",
|
||||||
"refusedByCounterpartyBank",
|
"refusedByCounterpartyBank",
|
||||||
@@ -2066,6 +2068,15 @@
|
|||||||
"description" : "Shows the number of [approvals](https://docs.adyen.com/api-explorer/transfers/latest/post/transfers/approve) required to process the transfer.",
|
"description" : "Shows the number of [approvals](https://docs.adyen.com/api-explorer/transfers/latest/post/transfers/approve) required to process the transfer.",
|
||||||
"format" : "int32",
|
"format" : "int32",
|
||||||
"type" : "integer"
|
"type" : "integer"
|
||||||
|
},
|
||||||
|
"scaOnApproval" : {
|
||||||
|
"description" : "Shows the status of the Strong Customer Authentication (SCA) process.\n\nPossible values: **required**, **notApplicable**.",
|
||||||
|
"enum" : [
|
||||||
|
"completed",
|
||||||
|
"notApplicable",
|
||||||
|
"required"
|
||||||
|
],
|
||||||
|
"type" : "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"type" : "object"
|
"type" : "object"
|
||||||
|
|||||||
@@ -1714,7 +1714,7 @@
|
|||||||
},
|
},
|
||||||
"eventId" : {
|
"eventId" : {
|
||||||
"x-addedInVersion" : "4",
|
"x-addedInVersion" : "4",
|
||||||
"description" : "The event id listed under events, that triggered the notification.",
|
"description" : "The unique identifier of the latest transfer event. Included only when the `category` is **issuedCard**.",
|
||||||
"type" : "string"
|
"type" : "string"
|
||||||
},
|
},
|
||||||
"events" : {
|
"events" : {
|
||||||
@@ -1753,6 +1753,7 @@
|
|||||||
"directDebitNotSupported",
|
"directDebitNotSupported",
|
||||||
"error",
|
"error",
|
||||||
"notEnoughBalance",
|
"notEnoughBalance",
|
||||||
|
"pending",
|
||||||
"pendingApproval",
|
"pendingApproval",
|
||||||
"pendingExecution",
|
"pendingExecution",
|
||||||
"refusedByCounterpartyBank",
|
"refusedByCounterpartyBank",
|
||||||
@@ -2025,6 +2026,7 @@
|
|||||||
"directDebitNotSupported",
|
"directDebitNotSupported",
|
||||||
"error",
|
"error",
|
||||||
"notEnoughBalance",
|
"notEnoughBalance",
|
||||||
|
"pending",
|
||||||
"pendingApproval",
|
"pendingApproval",
|
||||||
"pendingExecution",
|
"pendingExecution",
|
||||||
"refusedByCounterpartyBank",
|
"refusedByCounterpartyBank",
|
||||||
@@ -2266,6 +2268,15 @@
|
|||||||
"description" : "Shows the number of [approvals](https://docs.adyen.com/api-explorer/transfers/latest/post/transfers/approve) required to process the transfer.",
|
"description" : "Shows the number of [approvals](https://docs.adyen.com/api-explorer/transfers/latest/post/transfers/approve) required to process the transfer.",
|
||||||
"format" : "int32",
|
"format" : "int32",
|
||||||
"type" : "integer"
|
"type" : "integer"
|
||||||
|
},
|
||||||
|
"scaOnApproval" : {
|
||||||
|
"description" : "Shows the status of the Strong Customer Authentication (SCA) process.\n\nPossible values: **required**, **notApplicable**.",
|
||||||
|
"enum" : [
|
||||||
|
"completed",
|
||||||
|
"notApplicable",
|
||||||
|
"required"
|
||||||
|
],
|
||||||
|
"type" : "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"type" : "object"
|
"type" : "object"
|
||||||
|
|||||||
@@ -1057,6 +1057,7 @@
|
|||||||
"directDebitNotSupported",
|
"directDebitNotSupported",
|
||||||
"error",
|
"error",
|
||||||
"notEnoughBalance",
|
"notEnoughBalance",
|
||||||
|
"pending",
|
||||||
"pendingApproval",
|
"pendingApproval",
|
||||||
"pendingExecution",
|
"pendingExecution",
|
||||||
"refusedByCounterpartyBank",
|
"refusedByCounterpartyBank",
|
||||||
|
|||||||
@@ -2709,6 +2709,7 @@
|
|||||||
"directDebitNotSupported",
|
"directDebitNotSupported",
|
||||||
"error",
|
"error",
|
||||||
"notEnoughBalance",
|
"notEnoughBalance",
|
||||||
|
"pending",
|
||||||
"pendingApproval",
|
"pendingApproval",
|
||||||
"pendingExecution",
|
"pendingExecution",
|
||||||
"refusedByCounterpartyBank",
|
"refusedByCounterpartyBank",
|
||||||
@@ -2978,6 +2979,15 @@
|
|||||||
"description" : "Shows the number of [approvals](https://docs.adyen.com/api-explorer/transfers/latest/post/transfers/approve) required to process the transfer.",
|
"description" : "Shows the number of [approvals](https://docs.adyen.com/api-explorer/transfers/latest/post/transfers/approve) required to process the transfer.",
|
||||||
"format" : "int32",
|
"format" : "int32",
|
||||||
"type" : "integer"
|
"type" : "integer"
|
||||||
|
},
|
||||||
|
"scaOnApproval" : {
|
||||||
|
"description" : "Shows the status of the Strong Customer Authentication (SCA) process.\n\nPossible values: **required**, **notApplicable**.",
|
||||||
|
"enum" : [
|
||||||
|
"completed",
|
||||||
|
"notApplicable",
|
||||||
|
"required"
|
||||||
|
],
|
||||||
|
"type" : "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"type" : "object"
|
"type" : "object"
|
||||||
|
|||||||
@@ -3612,6 +3612,7 @@
|
|||||||
"directDebitNotSupported",
|
"directDebitNotSupported",
|
||||||
"error",
|
"error",
|
||||||
"notEnoughBalance",
|
"notEnoughBalance",
|
||||||
|
"pending",
|
||||||
"pendingApproval",
|
"pendingApproval",
|
||||||
"pendingExecution",
|
"pendingExecution",
|
||||||
"refusedByCounterpartyBank",
|
"refusedByCounterpartyBank",
|
||||||
@@ -3860,7 +3861,7 @@
|
|||||||
},
|
},
|
||||||
"eventId" : {
|
"eventId" : {
|
||||||
"x-addedInVersion" : "4",
|
"x-addedInVersion" : "4",
|
||||||
"description" : "The event id listed under events, that triggered the notification.",
|
"description" : "The unique identifier of the latest transfer event. Included only when the `category` is **issuedCard**.",
|
||||||
"type" : "string"
|
"type" : "string"
|
||||||
},
|
},
|
||||||
"events" : {
|
"events" : {
|
||||||
@@ -3899,6 +3900,7 @@
|
|||||||
"directDebitNotSupported",
|
"directDebitNotSupported",
|
||||||
"error",
|
"error",
|
||||||
"notEnoughBalance",
|
"notEnoughBalance",
|
||||||
|
"pending",
|
||||||
"pendingApproval",
|
"pendingApproval",
|
||||||
"pendingExecution",
|
"pendingExecution",
|
||||||
"refusedByCounterpartyBank",
|
"refusedByCounterpartyBank",
|
||||||
@@ -4171,6 +4173,7 @@
|
|||||||
"directDebitNotSupported",
|
"directDebitNotSupported",
|
||||||
"error",
|
"error",
|
||||||
"notEnoughBalance",
|
"notEnoughBalance",
|
||||||
|
"pending",
|
||||||
"pendingApproval",
|
"pendingApproval",
|
||||||
"pendingExecution",
|
"pendingExecution",
|
||||||
"refusedByCounterpartyBank",
|
"refusedByCounterpartyBank",
|
||||||
@@ -4504,6 +4507,15 @@
|
|||||||
"description" : "Shows the number of [approvals](https://docs.adyen.com/api-explorer/transfers/latest/post/transfers/approve) required to process the transfer.",
|
"description" : "Shows the number of [approvals](https://docs.adyen.com/api-explorer/transfers/latest/post/transfers/approve) required to process the transfer.",
|
||||||
"format" : "int32",
|
"format" : "int32",
|
||||||
"type" : "integer"
|
"type" : "integer"
|
||||||
|
},
|
||||||
|
"scaOnApproval" : {
|
||||||
|
"description" : "Shows the status of the Strong Customer Authentication (SCA) process.\n\nPossible values: **required**, **notApplicable**.",
|
||||||
|
"enum" : [
|
||||||
|
"completed",
|
||||||
|
"notApplicable",
|
||||||
|
"required"
|
||||||
|
],
|
||||||
|
"type" : "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"type" : "object"
|
"type" : "object"
|
||||||
|
|||||||
@@ -42,13 +42,6 @@ webhooks:
|
|||||||
'200':
|
'200':
|
||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
examples:
|
|
||||||
balancePlatform-authentication-created-authenticated-challenge:
|
|
||||||
$ref: '#/components/examples/WebhookAck'
|
|
||||||
balancePlatform-authentication-created-authenticated-frictionless:
|
|
||||||
$ref: '#/components/examples/WebhookAck'
|
|
||||||
balancePlatform-authentication-created-rejected:
|
|
||||||
$ref: '#/components/examples/WebhookAck'
|
|
||||||
schema:
|
schema:
|
||||||
$ref: '#/components/schemas/BalancePlatformNotificationResponse'
|
$ref: '#/components/schemas/BalancePlatformNotificationResponse'
|
||||||
description: OK - the request has succeeded.
|
description: OK - the request has succeeded.
|
||||||
@@ -76,12 +69,18 @@ webhooks:
|
|||||||
requestBody:
|
requestBody:
|
||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
|
examples:
|
||||||
|
post-balancePlatform.authentication.relayed:
|
||||||
|
$ref: '#/components/examples/post-balancePlatform.authentication.relayed-post-balancePlatform.authentication.relayed'
|
||||||
schema:
|
schema:
|
||||||
$ref: '#/components/schemas/RelayedAuthenticationRequest'
|
$ref: '#/components/schemas/RelayedAuthenticationRequest'
|
||||||
responses:
|
responses:
|
||||||
'200':
|
'200':
|
||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
|
examples:
|
||||||
|
post-balancePlatform.authentication.relayed:
|
||||||
|
$ref: '#/components/examples/WebhookAck'
|
||||||
schema:
|
schema:
|
||||||
$ref: '#/components/schemas/RelayedAuthenticationResponse'
|
$ref: '#/components/schemas/RelayedAuthenticationResponse'
|
||||||
description: OK - the request has succeeded.
|
description: OK - the request has succeeded.
|
||||||
@@ -470,12 +469,15 @@ components:
|
|||||||
description: 'The flow used in the challenge. Possible values:
|
description: 'The flow used in the challenge. Possible values:
|
||||||
|
|
||||||
|
|
||||||
* **OTP_SMS**: one-time password (OTP) flow
|
* **PWD_OTP_PHONE_FL**: one-time password (OTP) flow via SMS
|
||||||
|
|
||||||
* **OOB**: out-of-band (OOB) flow'
|
* **PWD_OTP_EMAIL_FL**: one-time password (OTP) flow via email
|
||||||
|
|
||||||
|
* **OOB_TRIGGER_FL**: out-of-band (OOB) flow'
|
||||||
enum:
|
enum:
|
||||||
- OTP_SMS
|
- PWD_OTP_PHONE_FL
|
||||||
- OOB
|
- PWD_OTP_EMAIL_FL
|
||||||
|
- OOB_TRIGGER_FL
|
||||||
type: string
|
type: string
|
||||||
lastInteraction:
|
lastInteraction:
|
||||||
description: The last time of interaction with the challenge.
|
description: The last time of interaction with the challenge.
|
||||||
@@ -600,9 +602,11 @@ components:
|
|||||||
type: http
|
type: http
|
||||||
examples:
|
examples:
|
||||||
WebhookAck:
|
WebhookAck:
|
||||||
summary: Acknowledge Webhook
|
summary: 'Respond with your out-of-band authentication decision: "proceed" to
|
||||||
|
continue, "refused" to refuse'
|
||||||
value:
|
value:
|
||||||
notificationResponse: '[accepted]'
|
authenticationDecision:
|
||||||
|
status: proceed
|
||||||
post-balancePlatform.authentication.created-balancePlatform-authentication-created-authenticated-challenge:
|
post-balancePlatform.authentication.created-balancePlatform-authentication-created-authenticated-challenge:
|
||||||
summary: Authentication successful (challenge flow)
|
summary: Authentication successful (challenge flow)
|
||||||
description: Example webhook for a successful authentication (challenge flow)
|
description: Example webhook for a successful authentication (challenge flow)
|
||||||
@@ -709,3 +713,16 @@ components:
|
|||||||
environment: test
|
environment: test
|
||||||
timestamp: '2022-12-22T15:42:03+01:00'
|
timestamp: '2022-12-22T15:42:03+01:00'
|
||||||
type: balancePlatform.authentication.created
|
type: balancePlatform.authentication.created
|
||||||
|
post-balancePlatform.authentication.relayed-post-balancePlatform.authentication.relayed:
|
||||||
|
summary: Out-of-band authentication relayed request webhook
|
||||||
|
description: Example webhook for an out-of-band authentication relayed request
|
||||||
|
webhook
|
||||||
|
value:
|
||||||
|
id: 1ea64f8e-d1e1-4b9d-a3a2-3953e385b2c8
|
||||||
|
paymentInstrumentId: PI123ABCDEFGHIJKLMN45678
|
||||||
|
purchase:
|
||||||
|
date: '2025-03-06T15:17:55Z'
|
||||||
|
merchantName: widgetsInc
|
||||||
|
originalAmount:
|
||||||
|
currency: EUR
|
||||||
|
value: 14548
|
||||||
|
|||||||
@@ -1432,6 +1432,7 @@ components:
|
|||||||
- directDebitNotSupported
|
- directDebitNotSupported
|
||||||
- error
|
- error
|
||||||
- notEnoughBalance
|
- notEnoughBalance
|
||||||
|
- pending
|
||||||
- pendingApproval
|
- pendingApproval
|
||||||
- pendingExecution
|
- pendingExecution
|
||||||
- refusedByCounterpartyBank
|
- refusedByCounterpartyBank
|
||||||
@@ -1701,6 +1702,7 @@ components:
|
|||||||
- directDebitNotSupported
|
- directDebitNotSupported
|
||||||
- error
|
- error
|
||||||
- notEnoughBalance
|
- notEnoughBalance
|
||||||
|
- pending
|
||||||
- pendingApproval
|
- pendingApproval
|
||||||
- pendingExecution
|
- pendingExecution
|
||||||
- refusedByCounterpartyBank
|
- refusedByCounterpartyBank
|
||||||
@@ -1911,6 +1913,17 @@ components:
|
|||||||
required to process the transfer.
|
required to process the transfer.
|
||||||
format: int32
|
format: int32
|
||||||
type: integer
|
type: integer
|
||||||
|
scaOnApproval:
|
||||||
|
description: 'Shows the status of the Strong Customer Authentication (SCA)
|
||||||
|
process.
|
||||||
|
|
||||||
|
|
||||||
|
Possible values: **required**, **notApplicable**.'
|
||||||
|
enum:
|
||||||
|
- completed
|
||||||
|
- notApplicable
|
||||||
|
- required
|
||||||
|
type: string
|
||||||
type: object
|
type: object
|
||||||
UKLocalAccountIdentification:
|
UKLocalAccountIdentification:
|
||||||
additionalProperties: false
|
additionalProperties: false
|
||||||
|
|||||||
@@ -1544,7 +1544,8 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
eventId:
|
eventId:
|
||||||
x-addedInVersion: '4'
|
x-addedInVersion: '4'
|
||||||
description: The event id listed under events, that triggered the notification.
|
description: The unique identifier of the latest transfer event. Included
|
||||||
|
only when the `category` is **issuedCard**.
|
||||||
type: string
|
type: string
|
||||||
events:
|
events:
|
||||||
x-addedInVersion: '3'
|
x-addedInVersion: '3'
|
||||||
@@ -1580,6 +1581,7 @@ components:
|
|||||||
- directDebitNotSupported
|
- directDebitNotSupported
|
||||||
- error
|
- error
|
||||||
- notEnoughBalance
|
- notEnoughBalance
|
||||||
|
- pending
|
||||||
- pendingApproval
|
- pendingApproval
|
||||||
- pendingExecution
|
- pendingExecution
|
||||||
- refusedByCounterpartyBank
|
- refusedByCounterpartyBank
|
||||||
@@ -1833,6 +1835,7 @@ components:
|
|||||||
- directDebitNotSupported
|
- directDebitNotSupported
|
||||||
- error
|
- error
|
||||||
- notEnoughBalance
|
- notEnoughBalance
|
||||||
|
- pending
|
||||||
- pendingApproval
|
- pendingApproval
|
||||||
- pendingExecution
|
- pendingExecution
|
||||||
- refusedByCounterpartyBank
|
- refusedByCounterpartyBank
|
||||||
@@ -2035,6 +2038,17 @@ components:
|
|||||||
required to process the transfer.
|
required to process the transfer.
|
||||||
format: int32
|
format: int32
|
||||||
type: integer
|
type: integer
|
||||||
|
scaOnApproval:
|
||||||
|
description: 'Shows the status of the Strong Customer Authentication (SCA)
|
||||||
|
process.
|
||||||
|
|
||||||
|
|
||||||
|
Possible values: **required**, **notApplicable**.'
|
||||||
|
enum:
|
||||||
|
- completed
|
||||||
|
- notApplicable
|
||||||
|
- required
|
||||||
|
type: string
|
||||||
type: object
|
type: object
|
||||||
UKLocalAccountIdentification:
|
UKLocalAccountIdentification:
|
||||||
additionalProperties: false
|
additionalProperties: false
|
||||||
|
|||||||
@@ -969,6 +969,7 @@ components:
|
|||||||
- directDebitNotSupported
|
- directDebitNotSupported
|
||||||
- error
|
- error
|
||||||
- notEnoughBalance
|
- notEnoughBalance
|
||||||
|
- pending
|
||||||
- pendingApproval
|
- pendingApproval
|
||||||
- pendingExecution
|
- pendingExecution
|
||||||
- refusedByCounterpartyBank
|
- refusedByCounterpartyBank
|
||||||
|
|||||||
@@ -2240,6 +2240,7 @@ components:
|
|||||||
- directDebitNotSupported
|
- directDebitNotSupported
|
||||||
- error
|
- error
|
||||||
- notEnoughBalance
|
- notEnoughBalance
|
||||||
|
- pending
|
||||||
- pendingApproval
|
- pendingApproval
|
||||||
- pendingExecution
|
- pendingExecution
|
||||||
- refusedByCounterpartyBank
|
- refusedByCounterpartyBank
|
||||||
@@ -2561,6 +2562,17 @@ components:
|
|||||||
required to process the transfer.
|
required to process the transfer.
|
||||||
format: int32
|
format: int32
|
||||||
type: integer
|
type: integer
|
||||||
|
scaOnApproval:
|
||||||
|
description: 'Shows the status of the Strong Customer Authentication (SCA)
|
||||||
|
process.
|
||||||
|
|
||||||
|
|
||||||
|
Possible values: **required**, **notApplicable**.'
|
||||||
|
enum:
|
||||||
|
- completed
|
||||||
|
- notApplicable
|
||||||
|
- required
|
||||||
|
type: string
|
||||||
type: object
|
type: object
|
||||||
TransferServiceRestServiceError:
|
TransferServiceRestServiceError:
|
||||||
additionalProperties: false
|
additionalProperties: false
|
||||||
|
|||||||
@@ -3006,6 +3006,7 @@ components:
|
|||||||
- directDebitNotSupported
|
- directDebitNotSupported
|
||||||
- error
|
- error
|
||||||
- notEnoughBalance
|
- notEnoughBalance
|
||||||
|
- pending
|
||||||
- pendingApproval
|
- pendingApproval
|
||||||
- pendingExecution
|
- pendingExecution
|
||||||
- refusedByCounterpartyBank
|
- refusedByCounterpartyBank
|
||||||
@@ -3249,7 +3250,8 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
eventId:
|
eventId:
|
||||||
x-addedInVersion: '4'
|
x-addedInVersion: '4'
|
||||||
description: The event id listed under events, that triggered the notification.
|
description: The unique identifier of the latest transfer event. Included
|
||||||
|
only when the `category` is **issuedCard**.
|
||||||
type: string
|
type: string
|
||||||
events:
|
events:
|
||||||
x-addedInVersion: '3'
|
x-addedInVersion: '3'
|
||||||
@@ -3285,6 +3287,7 @@ components:
|
|||||||
- directDebitNotSupported
|
- directDebitNotSupported
|
||||||
- error
|
- error
|
||||||
- notEnoughBalance
|
- notEnoughBalance
|
||||||
|
- pending
|
||||||
- pendingApproval
|
- pendingApproval
|
||||||
- pendingExecution
|
- pendingExecution
|
||||||
- refusedByCounterpartyBank
|
- refusedByCounterpartyBank
|
||||||
@@ -3538,6 +3541,7 @@ components:
|
|||||||
- directDebitNotSupported
|
- directDebitNotSupported
|
||||||
- error
|
- error
|
||||||
- notEnoughBalance
|
- notEnoughBalance
|
||||||
|
- pending
|
||||||
- pendingApproval
|
- pendingApproval
|
||||||
- pendingExecution
|
- pendingExecution
|
||||||
- refusedByCounterpartyBank
|
- refusedByCounterpartyBank
|
||||||
@@ -3902,6 +3906,17 @@ components:
|
|||||||
required to process the transfer.
|
required to process the transfer.
|
||||||
format: int32
|
format: int32
|
||||||
type: integer
|
type: integer
|
||||||
|
scaOnApproval:
|
||||||
|
description: 'Shows the status of the Strong Customer Authentication (SCA)
|
||||||
|
process.
|
||||||
|
|
||||||
|
|
||||||
|
Possible values: **required**, **notApplicable**.'
|
||||||
|
enum:
|
||||||
|
- completed
|
||||||
|
- notApplicable
|
||||||
|
- required
|
||||||
|
type: string
|
||||||
type: object
|
type: object
|
||||||
TransferServiceRestServiceError:
|
TransferServiceRestServiceError:
|
||||||
additionalProperties: false
|
additionalProperties: false
|
||||||
|
|||||||
Reference in New Issue
Block a user