OVPAY-2491 - Added missing query params.

This commit is contained in:
Bas Boterman 2026-03-25 17:07:13 +01:00
parent 868ac3e6bd
commit 974f737777

View File

@ -287,6 +287,41 @@ paths:
summary: passNumber summary: passNumber
schema: schema:
type: string type: string
- name: validatorType
in: query
required: true
description: >-
A validatorType IS A string THAT defines the type of the attribute
that is needed to verify the authenticity of the request.
Options:
- **verificationCode**: A validator containing, 4 characters long,
which can be found on a CLT-card
- **amount**: Amount on the bank statement (in cents)
example: verificationcode
schema:
type: string
enum:
- verificationcode
- amount
- name: validatorInput
in: query
required: true
description: >-
A validatorInput IS A string THAT defines the value of the specified
validatorType.
examples:
verificationcode:
value: 6RS9
summary: verificationcode
amount:
value: '1021'
summary: amount
schema:
type: string
- name: dateTimeFrom - name: dateTimeFrom
in: query in: query
required: false required: false