From c692718fbb07dce6b08ac68778c0e8eb8726e6ac Mon Sep 17 00:00:00 2001 From: "b.boterman@htm.nl" Date: Tue, 6 May 2025 14:28:40 +0200 Subject: [PATCH] OVPAY-1742 - Added PAD OTP and PAD email address to transfer request body. --- src/openapi/customers/SE-customers.yaml | 40 +++++++++++++++++++++---- 1 file changed, 35 insertions(+), 5 deletions(-) diff --git a/src/openapi/customers/SE-customers.yaml b/src/openapi/customers/SE-customers.yaml index 1b2b370..00bb076 100644 --- a/src/openapi/customers/SE-customers.yaml +++ b/src/openapi/customers/SE-customers.yaml @@ -2069,13 +2069,43 @@ paths: schema: $ref: "#/components/schemas/unavailable" examples: - Transfer to an existing OVpay token: - value: { "ovPayTokenId": 2 } - Transfer to a new token by XTAT: + Transfer to an existing OVpay token without existing PAD: value: { - "xtat": "e7fa3392-646b-40e2-95a6-c417dc0b0969", - "alias": "MyToken", + "oldOvPayToken": { "padOtp": "123456" }, + "newOvPayToken": + { + "ovPayTokenId": 2, + "padEmailAddress": "jandevries@outlook.com", + }, + } + Transfer to an existing OVpay token with existing PAD: + value: + { + "oldOvPayToken": { "padOtp": "123456" }, + "newOvPayToken": { "ovPayTokenId": 2, "padOtp": "678901" }, + } + Transfer to a new token by XTAT without existing PAD: + value: + { + "oldOvPayToken": { "padOtp": "123456" }, + "newOvPayToken": + { + "xtat": "e7fa3392-646b-40e2-95a6-c417dc0b0969", + "alias": "MyToken", + "padEmailAddress": "jandevries@outlook.com", + }, + } + Transfer to a new token by XTAT with existing PAD: + value: + { + "oldOvPayToken": { "padOtp": "123456" }, + "newOvPayToken": + { + "xtat": "e7fa3392-646b-40e2-95a6-c417dc0b0969", + "alias": "MyToken", + "padOtp": "678901", + }, } responses: "200":