develop #38

Merged
bboterm merged 451 commits from develop into main 2025-11-19 14:28:14 +00:00
Showing only changes of commit 8da955c5cf - Show all commits

View File

@ -2581,26 +2581,37 @@ paths:
$ref: "#/components/schemas/TransferRequest" $ref: "#/components/schemas/TransferRequest"
examples: examples:
Transfer of a token without PAD to an existing OVpay token: Transfer of a token without PAD to an existing OVpay token:
summary: Transfer of a token without PAD to an existing OVpay token
description: |
Transfer of a token without PAD to an existing OVpay token.
value: value:
{ {
"oldOvPayToken": {}, "oldOvPayToken": {},
"newOvPayToken": "newOvPayToken":
{ {
"ovPayTokenId": 2, "ovPayTokenId": 2,
"alias": "MyToken"
} }
} }
Transfer of a token without PAD to a new OVpay token by xTAT: Transfer of a token without PAD to a new OVpay token by xTAT:
summary: Transfer of a token without PAD to a new OVpay token by xTAT
description: |
Transfer of a token without PAD to a new OVpay token by xTAT.
value: value:
{ {
"oldOvPayToken": {}, "oldOvPayToken": {},
"newOvPayToken": "newOvPayToken":
{ {
"xTat": "e7fa3392-646b-40e2-95a6-c417dc0b0969", "xTat": "e7fa3392-646b-40e2-95a6-c417dc0b0969",
"alias": "MyToken", "alias": "My new token",
}, },
} }
Transfer of a token with PAD to an existing OVpay token without existing PAD: Transfer of a token with PAD to an existing OVpay token without existing PAD:
summary: Transfer of a token with PAD to an existing OVpay token without existing PAD
description: |
Transfer of a token with PAD to an existing OVpay token without existing PAD.
Note how this request is different, since it has an e-mail address on which the new
PAD should be created. This request may optionally provide an OTP for
verification of th provided email address.
value: value:
{ {
"oldOvPayToken": { "padOtp": "123456" }, "oldOvPayToken": { "padOtp": "123456" },
@ -2608,10 +2619,13 @@ paths:
{ {
"ovPayTokenId": 2, "ovPayTokenId": 2,
"padEmailAddress": "jandevries@outlook.com", "padEmailAddress": "jandevries@outlook.com",
"alias": "MyToken", "padOtp": "678901",
}, },
} }
Transfer of a token with PAD to an existing OVpay token with existing PAD: Transfer of a token with PAD to an existing OVpay token with existing PAD:
summary: Transfer of a token with PAD to an existing OVpay token with existing PAD
description: |
Transfer of a token with PAD to an existing OVpay token with existing PAD.
value: value:
{ {
"oldOvPayToken": { "padOtp": "123456" }, "oldOvPayToken": { "padOtp": "123456" },
@ -2619,30 +2633,37 @@ paths:
{ {
"ovPayTokenId": 2, "ovPayTokenId": 2,
"padOtp": "678901", "padOtp": "678901",
"alias": "MyToken"
}, },
} }
Transfer of a token with PAD to a new token by xTAT without existing PAD with e-mail verification by OTP: Transfer of a token with PAD to a new token by xTAT without existing PAD:
summary: Transfer of a token with PAD to a new token by xTAT without existing PAD
description: |
Transfer of a token with PAD to a new token by xTAT without existing PAD.
Note how this request is different, since it has an e-mail address on which the new
PAD should be created. This request may optionally provide an OTP for
verification of th provided email address.
value: value:
{ {
"oldOvPayToken": { "padOtp": "123456" }, "oldOvPayToken": { "padOtp": "123456" },
"newOvPayToken": "newOvPayToken":
{ {
"xtat": "e7fa3392-646b-40e2-95a6-c417dc0b0969", "xtat": "e7fa3392-646b-40e2-95a6-c417dc0b0969",
"alias": "MyToken", "alias": "My new token",
"padEmailAddress": "jandevries@outlook.com", "padEmailAddress": "jandevries@outlook.com",
"padOtp": "678901", "padOtp": "678901",
}, },
} }
Transfer of a token with PAD to a new token by SRID and amount, with existing PAD: Transfer of a token with PAD to a new token by xTAT with existing PAD:
summary: Transfer of a token with PAD to a new token by xTAT with existing PAD
description: |
Transfer of a token with PAD to a new token by xTAT with existing PAD.
value: value:
{ {
"oldOvPayToken": { "padOtp": "123456" }, "oldOvPayToken": { "padOtp": "123456" },
"newOvPayToken": "newOvPayToken":
{ {
"serviceReferenceId": "NLOV1234567ABCDEFG", "xtat": "e7fa3392-646b-40e2-95a6-c417dc0b0969",
"amount": 230, "alias": "My new token",
"alias": "MyToken",
"padOtp": "678901", "padOtp": "678901",
}, },
} }