OVPAY-2485 - Improved TP requests.
This commit is contained in:
parent
87d8f7df58
commit
f28a797b6b
@ -3757,12 +3757,7 @@ paths:
|
|||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
$ref: "#/components/schemas/ActivateAgoRequest"
|
$ref: "#/components/schemas/ActivateAgoRequest"
|
||||||
examples:
|
example:
|
||||||
For self:
|
|
||||||
value:
|
|
||||||
emailAddress: null
|
|
||||||
For other:
|
|
||||||
value:
|
|
||||||
emailAddress: stasjo@htm.nl
|
emailAddress: stasjo@htm.nl
|
||||||
responses:
|
responses:
|
||||||
"200":
|
"200":
|
||||||
@ -3879,15 +3874,25 @@ paths:
|
|||||||
post:
|
post:
|
||||||
tags:
|
tags:
|
||||||
- AGO
|
- AGO
|
||||||
summary: Request additional OV-pas security for a token in profile.
|
summary: Submit an OTP for a triggered OTP flow.
|
||||||
description: Request additional OV-pas security for a token in profile.
|
description: |
|
||||||
|
Submit an OTP for a triggered OTP flow. This can either be result of an AGO activation, or
|
||||||
|
result of an AGO authorization flow. Since the backoffice behaves slightly different depending
|
||||||
|
on which use case is executed, the calling TP needs to provide an `action` in the request body.
|
||||||
requestBody:
|
requestBody:
|
||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
$ref: "#/components/schemas/VerifyOtpRequest"
|
$ref: "#/components/schemas/VerifyOtpRequest"
|
||||||
example:
|
examples:
|
||||||
|
OTP verification for TAT security activation:
|
||||||
|
value:
|
||||||
otp: 123456
|
otp: 123456
|
||||||
|
action: secure
|
||||||
|
OTP verification for TAT security authorization:
|
||||||
|
value:
|
||||||
|
otp: 123456
|
||||||
|
action: authorize
|
||||||
responses:
|
responses:
|
||||||
"200":
|
"200":
|
||||||
description: OK
|
description: OK
|
||||||
@ -4908,6 +4913,9 @@ components:
|
|||||||
emailAddress:
|
emailAddress:
|
||||||
type: string
|
type: string
|
||||||
example: 123456
|
example: 123456
|
||||||
|
action:
|
||||||
|
type: string
|
||||||
|
example: secure
|
||||||
VerifyOtpResponse:
|
VerifyOtpResponse:
|
||||||
type: object
|
type: object
|
||||||
properties:
|
properties:
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user