OVPAY-1742 - Added PAD OTP and PAD email address to transfer request body.

This commit is contained in:
Bas Boterman 2025-05-06 14:28:40 +02:00
parent d8f9706d76
commit c692718fbb

View File

@ -2069,13 +2069,43 @@ paths:
schema: schema:
$ref: "#/components/schemas/unavailable" $ref: "#/components/schemas/unavailable"
examples: examples:
Transfer to an existing OVpay token: Transfer to an existing OVpay token without existing PAD:
value: { "ovPayTokenId": 2 }
Transfer to a new token by XTAT:
value: value:
{
"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", "xtat": "e7fa3392-646b-40e2-95a6-c417dc0b0969",
"alias": "MyToken", "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: responses:
"200": "200":