Compare commits
No commits in common. "4f54aaf02774f719223156941edca7f1db5d98f8" and "8fc5d3b55ecae1a9dc4ecb5d0606b55c176b7508" have entirely different histories.
4f54aaf027
...
8fc5d3b55e
@ -17,10 +17,10 @@ paths:
|
|||||||
description: >
|
description: >
|
||||||
Create a claim by sending a JSON as specified in the schema. By
|
Create a claim by sending a JSON as specified in the schema. By
|
||||||
specifying the chipcardnumber under 'chipkaart',
|
specifying the chipcardnumber under 'chipkaart',
|
||||||
a claim for OV chipcard will be sent to the OVC API. If no
|
|
||||||
chipcardnumber is specified under 'chipkaart', a claim for EMV/OV-pas is sent
|
a claim for OV chipcard will be send to the OVC API. If no
|
||||||
to Mendix, where it can be handled according to the fields present
|
chipcardnumber is specified under 'chipkaart', a claim for EMV is send
|
||||||
(serviceRefId + totaalbedrag or ovPasNumber + verificationCode)
|
to mendix.
|
||||||
parameters: []
|
parameters: []
|
||||||
requestBody:
|
requestBody:
|
||||||
content:
|
content:
|
||||||
@ -47,6 +47,8 @@ paths:
|
|||||||
toelichting: string
|
toelichting: string
|
||||||
lijn: '1'
|
lijn: '1'
|
||||||
vervoertype: '1'
|
vervoertype: '1'
|
||||||
|
serviceRefId: '1'
|
||||||
|
Totaalbedrag: 0
|
||||||
EMV:
|
EMV:
|
||||||
value:
|
value:
|
||||||
aankomsthalte: '1'
|
aankomsthalte: '1'
|
||||||
@ -65,28 +67,8 @@ paths:
|
|||||||
toelichting: string
|
toelichting: string
|
||||||
lijn: '1'
|
lijn: '1'
|
||||||
vervoertype: '1'
|
vervoertype: '1'
|
||||||
serviceRefId: 'NLOV1234567ABCDEFG'
|
serviceRefId: '1'
|
||||||
totaalbedrag: 3.14
|
Totaalbedrag: 0
|
||||||
OV-pas:
|
|
||||||
value:
|
|
||||||
aankomsthalte: '1'
|
|
||||||
instapdatum: '2024-03-06T15:20:44.549Z'
|
|
||||||
instaptijd: '2024-03-06T15:20:44.549Z'
|
|
||||||
ingecheckt: true
|
|
||||||
uitgecheckt: true
|
|
||||||
afgeschrevenbedrag: 0
|
|
||||||
vertrekhalte: string
|
|
||||||
korting: true
|
|
||||||
iban: '1234123412341234'
|
|
||||||
naam: string
|
|
||||||
emailadres: user@example.com
|
|
||||||
uitstaptijd: '2024-03-06T15:20:44.549Z'
|
|
||||||
verwachtbedrag: 0
|
|
||||||
toelichting: string
|
|
||||||
lijn: '1'
|
|
||||||
vervoertype: '1'
|
|
||||||
ovPasNumber: '63AW974'
|
|
||||||
verificationCode: '2FQ8'
|
|
||||||
responses:
|
responses:
|
||||||
'200':
|
'200':
|
||||||
description: ok
|
description: ok
|
||||||
@ -121,19 +103,18 @@ paths:
|
|||||||
examples:
|
examples:
|
||||||
EMV:
|
EMV:
|
||||||
value:
|
value:
|
||||||
emailAddress: 'stasjo@htm.nl'
|
emailAddress: 'j.beek@htm.nl'
|
||||||
orderNumber: 'ORD1000046'
|
orderNumber: 'ORD1000046'
|
||||||
serviceReferenceId: 'NLOVA5BCD124H3Z21X'
|
serviceReferenceId: 'NLOVA5BCD124H3Z21X'
|
||||||
amount: 2305
|
amount: 2305
|
||||||
iban: 'NL98INGB0003856625'
|
iban: 'NL98INGB0003856625'
|
||||||
orderDate: '2025-01-13'
|
orderDate: '2025-01-13'
|
||||||
productName: 'HTM 20% korting'
|
productName: 'HTM 20% korting'
|
||||||
OV-pas:
|
OVpas:
|
||||||
value:
|
value:
|
||||||
emailAddress: 'stasjo@htm.nl'
|
emailAddress: 'j.beek@htm.nl'
|
||||||
orderNumber: 'ORD1000046'
|
orderNumber: 'ORD1000046'
|
||||||
ovpasNumber: '63AW974'
|
ovpasNumber: '63AW974'
|
||||||
verificationCode: '2FQ8'
|
|
||||||
iban: 'NL98INGB0003856625'
|
iban: 'NL98INGB0003856625'
|
||||||
orderDate: '2025-01-13'
|
orderDate: '2025-01-13'
|
||||||
productName: 'HTM 20% korting'
|
productName: 'HTM 20% korting'
|
||||||
@ -200,7 +181,7 @@ components:
|
|||||||
iban:
|
iban:
|
||||||
type: string
|
type: string
|
||||||
description: String of length between 15 en 32 characters
|
description: String of length between 15 en 32 characters
|
||||||
example: NL98INGB0003856625
|
example: '1234123412341234'
|
||||||
naam:
|
naam:
|
||||||
type: string
|
type: string
|
||||||
emailadres:
|
emailadres:
|
||||||
@ -220,16 +201,9 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
serviceRefId:
|
serviceRefId:
|
||||||
type: string
|
type: string
|
||||||
example: NLOV1234567ABCDEFG
|
Totaalbedrag:
|
||||||
totaalbedrag:
|
|
||||||
type: number
|
type: number
|
||||||
format: float
|
format: float
|
||||||
ovPasNumber:
|
|
||||||
type: string
|
|
||||||
example: 63AW974
|
|
||||||
verificationCode:
|
|
||||||
type: string
|
|
||||||
example: 2FQ8
|
|
||||||
refundsEntity:
|
refundsEntity:
|
||||||
required:
|
required:
|
||||||
- emailAddress
|
- emailAddress
|
||||||
@ -239,7 +213,7 @@ components:
|
|||||||
emailAddress:
|
emailAddress:
|
||||||
type: string
|
type: string
|
||||||
format: email
|
format: email
|
||||||
example: stasjo@htm.nl
|
example: j.beek@htm.nl
|
||||||
orderNumber:
|
orderNumber:
|
||||||
type: string
|
type: string
|
||||||
example: ORD1000046
|
example: ORD1000046
|
||||||
@ -252,9 +226,6 @@ components:
|
|||||||
ovpasNumber:
|
ovpasNumber:
|
||||||
type: string
|
type: string
|
||||||
example: 63AW974
|
example: 63AW974
|
||||||
verificationCode:
|
|
||||||
type: string
|
|
||||||
example: 2FQ8
|
|
||||||
iban:
|
iban:
|
||||||
type: string
|
type: string
|
||||||
example: NL00RABO000001337
|
example: NL00RABO000001337
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user