lowercase paths
This commit is contained in:
parent
007cf4bdef
commit
43bf7bfff3
@ -359,7 +359,7 @@ paths:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: "#/components/schemas/CustomersResponse"
|
||||
/customers/customerStatusInstances:
|
||||
/customers/customerstatusinstances:
|
||||
post:
|
||||
tags:
|
||||
- Customers
|
||||
@ -401,7 +401,7 @@ paths:
|
||||
$ref: "#/components/schemas/CustomersResponse"
|
||||
x-auth-type: Application & Application User
|
||||
x-throttling-tier: Unlimited
|
||||
/customers/customerPreferences:
|
||||
/customers/customerpreferences:
|
||||
post:
|
||||
tags:
|
||||
- Customers
|
||||
@ -450,7 +450,7 @@ paths:
|
||||
$ref: "#/components/schemas/CustomersResponse"
|
||||
x-auth-type: Application & Application User
|
||||
x-throttling-tier: Unlimited
|
||||
/customerPreferences/{customerPreferenceId}:
|
||||
/customerpreferences/{customerPreferenceId}:
|
||||
patch:
|
||||
tags:
|
||||
- Customers
|
||||
@ -2506,274 +2506,6 @@ paths:
|
||||
responses:
|
||||
"200":
|
||||
description: Ok
|
||||
/customers/tokens/{ovpayTokenId}/replace:
|
||||
post:
|
||||
tags:
|
||||
- Token Replace v2
|
||||
parameters:
|
||||
- name: X-HTM-JWT-AUTH-HEADER
|
||||
in: header
|
||||
schema:
|
||||
type: string
|
||||
example: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c
|
||||
required: false
|
||||
description: The JWT of a customer in case of touchpoint were customer logs in themselves
|
||||
- name: X-HTM-CUSTOMER-PROFILE-ID-HEADER
|
||||
in: header
|
||||
schema:
|
||||
type: string
|
||||
example: feaaef83-a551-4283-8419-340b1ada3b55
|
||||
required: false
|
||||
description: The customerProfileId of a customer in the case of the SMP
|
||||
- name: X-HTM-ROLE-HEADER
|
||||
in: header
|
||||
schema:
|
||||
type: string
|
||||
example: Customer
|
||||
required: false
|
||||
- name: ovpayTokenId
|
||||
in: path
|
||||
schema:
|
||||
type: integer
|
||||
example: 1
|
||||
required: true
|
||||
summary: |-
|
||||
NOT TO BE CALLED BY TOUCHPOINTS - Replace an OVpay token with another (+ transfer products) - V2
|
||||
description: |-
|
||||
**NOTE: This endpoint is for usage by integratielaag only. Touchpoints should use
|
||||
`/customers/tokens/{ovpayTokenId}/transfer` instead.**\
|
||||
Transfer products from one OVpay token to another, and replace the tokens in the database.
|
||||
requestBody:
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: "#/components/schemas/unavailable"
|
||||
examples:
|
||||
Replace with new token by XTAT:
|
||||
summary: Replace with new token by XTAT
|
||||
description: |
|
||||
Replace with new token by XTAT. Note however the consumer provides an XTAT to identify
|
||||
the new token, this token could still be an existing token linked to the customer profile. This should
|
||||
be checked beforehand.
|
||||
value:
|
||||
{
|
||||
"ovPayToken":
|
||||
{
|
||||
"xTat": "32089cc8-d187-47ff-a3a9-5c2558def811",
|
||||
"alias": "Mijn token",
|
||||
},
|
||||
}
|
||||
responses:
|
||||
"201":
|
||||
description: Created
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: "#/components/schemas/unavailable"
|
||||
examples:
|
||||
Replace with new EMV token:
|
||||
summary: Replace with new EMV token
|
||||
description: Replace with new EMV token
|
||||
value:
|
||||
{
|
||||
"ovPayToken":
|
||||
{
|
||||
"customerProfileId": 1,
|
||||
"ovPayTokenId": 5,
|
||||
"xTat": "32089cc8-d187-47ff-a3a9-5c2558def811",
|
||||
"tokenType": { "tokenTypeId": 1, "name": "EMV" },
|
||||
"lastDigits": null,
|
||||
"ovpasNumber": null,
|
||||
"alias": "Mijn token",
|
||||
"tokenStatus":
|
||||
{ "tokenStatusId": 2, "name": "Active" },
|
||||
"expirationDate": "2028-08-31T23:59:00+02:00",
|
||||
"replacedByTokenId": null,
|
||||
"autoReloadRegistration": null,
|
||||
"ePurse": null,
|
||||
"personalAccountData":
|
||||
{ "name": null, "birthdate": null, "photo": null },
|
||||
"gboAgeProfile": null,
|
||||
"_links":
|
||||
{
|
||||
"self":
|
||||
{
|
||||
"href": "https://api.integratielaag.nl/abt/touchpoint/1.0/customers/tokens?ovpaytokenId=5",
|
||||
"method": "GET",
|
||||
},
|
||||
"partial_edit":
|
||||
{
|
||||
"href": "https://api.integratielaag.nl/abt/touchpoint/1.0/customers/tokens/5",
|
||||
"method": "PATCH",
|
||||
},
|
||||
"delete_token":
|
||||
{
|
||||
"href": "https://api.integratielaag.nl/abt/touchpoint/1.0/customers/tokens/5",
|
||||
"method": "DELETE",
|
||||
},
|
||||
"get_productinstances":
|
||||
{
|
||||
"href": "https://api.integratielaag.nl/abt/touchpoint/1.0/customers/tokens/5/productinstances",
|
||||
"method": "GET",
|
||||
},
|
||||
"get_trips":
|
||||
{
|
||||
"href": "https://api.integratielaag.nl/abt/touchpoint/1.0/customers/tokens/5/trips",
|
||||
"method": "GET",
|
||||
},
|
||||
"add_personal-data":
|
||||
{
|
||||
"href": "https://api.integratielaag.nl/abt/touchpoint/1.0/personal-data/32089cc8-d187-47ff-a3a9-5c2558def811",
|
||||
"method": "POST",
|
||||
},
|
||||
"compare_token":
|
||||
{
|
||||
"href": "https://api.integratielaag.nl/abt/touchpoint/1.0/customers/tokens/5/compare",
|
||||
"method": "POST",
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
Replace with new OV pas token:
|
||||
summary: Replace with new OV pas token
|
||||
description: Replace with new OV pas token
|
||||
value:
|
||||
{
|
||||
"ovPayToken":
|
||||
{
|
||||
"customerProfileId": 1,
|
||||
"ovPayTokenId": 5,
|
||||
"xTat": "32089cc8-d187-47ff-a3a9-5c2558def811",
|
||||
"tokenType":
|
||||
{ "tokenTypeId": 2, "name": "OV-pas physical" },
|
||||
"lastDigits": null,
|
||||
"ovpasNumber": "OV34567",
|
||||
"alias": "Mijn token",
|
||||
"tokenStatus":
|
||||
{ "tokenStatusId": 2, "name": "Active" },
|
||||
"expirationDate": "2028-08-31T23:59:00+02:00",
|
||||
"replacedByTokenId": null,
|
||||
"autoReloadRegistration": null,
|
||||
"ePurse":
|
||||
{
|
||||
"e-PurseBalance":
|
||||
{ "currency": "EUR", "amount": 350 },
|
||||
"status": "ACTIVE",
|
||||
"originDate": "2024-07-16T11:00:00+02:00",
|
||||
},
|
||||
"personalAccountData":
|
||||
{ "name": null, "birthdate": null, "photo": null },
|
||||
"gboAgeProfile": null,
|
||||
"_links":
|
||||
{
|
||||
"self":
|
||||
{
|
||||
"href": "https://api.integratielaag.nl/abt/touchpoint/1.0/customers/tokens?ovpaytokenId=5",
|
||||
"method": "GET",
|
||||
},
|
||||
"partial_edit":
|
||||
{
|
||||
"href": "https://api.integratielaag.nl/abt/touchpoint/1.0/customers/tokens/5",
|
||||
"method": "PATCH",
|
||||
},
|
||||
"delete_token":
|
||||
{
|
||||
"href": "https://api.integratielaag.nl/abt/touchpoint/1.0/customers/tokens/5",
|
||||
"method": "DELETE",
|
||||
},
|
||||
"get_productinstances":
|
||||
{
|
||||
"href": "https://api.integratielaag.nl/abt/touchpoint/1.0/customers/tokens/5/productinstances",
|
||||
"method": "GET",
|
||||
},
|
||||
"get_trips":
|
||||
{
|
||||
"href": "https://api.integratielaag.nl/abt/touchpoint/1.0/customers/tokens/5/trips",
|
||||
"method": "GET",
|
||||
},
|
||||
"add_personal-data":
|
||||
{
|
||||
"href": "https://api.integratielaag.nl/abt/touchpoint/1.0/personal-data/32089cc8-d187-47ff-a3a9-5c2558def811",
|
||||
"method": "POST",
|
||||
},
|
||||
"compare_token":
|
||||
{
|
||||
"href": "https://api.integratielaag.nl/abt/touchpoint/1.0/customers/tokens/5/compare",
|
||||
"method": "POST",
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
"200":
|
||||
description: Ok
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: "#/components/schemas/unavailable"
|
||||
examples:
|
||||
Replace with existing EMV token:
|
||||
summary: Replace with existing EMV token
|
||||
description: Replace with existing EMV token
|
||||
value:
|
||||
{
|
||||
"ovPayToken":
|
||||
{
|
||||
"customerProfileId": 1,
|
||||
"ovPayTokenId": 10,
|
||||
"xTat": "32089cc8-d187-47ff-a3a9-5c2558def811",
|
||||
"tokenType": { "tokenTypeId": 1, "name": "EMV" },
|
||||
"lastDigits": null,
|
||||
"ovpasNumber": null,
|
||||
"alias": "Mijn bestaande token",
|
||||
"tokenStatus":
|
||||
{ "tokenStatusId": 2, "name": "Active" },
|
||||
"expirationDate": "2028-08-31T23:59:00+02:00",
|
||||
"replacedByTokenId": null,
|
||||
"autoReloadRegistration": null,
|
||||
"ePurse": null,
|
||||
"personalAccountData":
|
||||
{ "name": null, "birthdate": null, "photo": null },
|
||||
"gboAgeProfile": null,
|
||||
"_links":
|
||||
{
|
||||
"self":
|
||||
{
|
||||
"href": "https://api.integratielaag.nl/abt/touchpoint/1.0/customers/tokens?ovpaytokenId=10",
|
||||
"method": "GET",
|
||||
},
|
||||
"partial_edit":
|
||||
{
|
||||
"href": "https://api.integratielaag.nl/abt/touchpoint/1.0/customers/tokens/10",
|
||||
"method": "PATCH",
|
||||
},
|
||||
"delete_token":
|
||||
{
|
||||
"href": "https://api.integratielaag.nl/abt/touchpoint/1.0/customers/tokens/10",
|
||||
"method": "DELETE",
|
||||
},
|
||||
"get_productinstances":
|
||||
{
|
||||
"href": "https://api.integratielaag.nl/abt/touchpoint/1.0/customers/tokens/10/productinstances",
|
||||
"method": "GET",
|
||||
},
|
||||
"get_trips":
|
||||
{
|
||||
"href": "https://api.integratielaag.nl/abt/touchpoint/1.0/customers/tokens/10/trips",
|
||||
"method": "GET",
|
||||
},
|
||||
"add_personal-data":
|
||||
{
|
||||
"href": "https://api.integratielaag.nl/abt/touchpoint/1.0/personal-data/32089cc8-d187-47ff-a3a9-5c2558def811",
|
||||
"method": "POST",
|
||||
},
|
||||
"compare_token":
|
||||
{
|
||||
"href": "https://api.integratielaag.nl/abt/touchpoint/1.0/customers/tokens/10/compare",
|
||||
"method": "POST",
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
/customers/tokens/{ovPayTokenId}/productinstances:
|
||||
get:
|
||||
tags:
|
||||
|
||||
Loading…
Reference in New Issue
Block a user