Compare commits

...

15 Commits

Author SHA1 Message Date
85c9872e19 Merge pull request 'develop' (#5) from develop into main
Reviewed-on: #5
2024-11-07 12:43:22 +00:00
35063ab2ee Merge branch 'main' into develop 2024-11-07 12:43:16 +00:00
f45d83e3e3 Merge pull request 'feature/OVPAY-1126' (#2) from feature/OVPAY-1126 into develop
Reviewed-on: #2
2024-11-07 12:42:22 +00:00
0f5fb627cd OVPAY-1126 - Filled patch /orders. 2024-11-07 13:41:53 +01:00
989b47a2d1 Add address as single entity to order customer. 2024-11-07 10:36:13 +01:00
e242e4db54 OVPAY-1126 - Renamed tag v2 to v2.1. 2024-11-06 16:18:44 +01:00
9be5af4886 OVPAY-1126 - Added fulfillment for SMP. 2024-11-06 16:16:24 +01:00
aa0d341b24 Merge branch 'feature/OVPAY-1126' of https://git.integratielaag.nl/HTM/ovpay into feature/OVPAY-1126 2024-11-06 15:54:12 +01:00
40da8531ed OVPAY-1172 - Return current state of order object in fulfillment v2. 2024-11-06 15:53:26 +01:00
bb478aa231 OVPAY-1126 - Specified endpoints for Order Creation and Order Retrieval for touch point. 2024-11-06 15:53:26 +01:00
7174f2942a OVPAY-1126 - Added deletes on order and order line. 2024-11-06 15:53:26 +01:00
836a884cfd OVPAY-1172 - Return current state of order object in fulfillment v2. 2024-11-04 15:55:50 +01:00
2b53158117 OVPAY-1126 - Specified endpoints for Order Creation and Order Retrieval for touch point. 2024-10-25 11:24:36 +02:00
197f1e07f6 OVPAY-1126 - Payments should always be added in single. 2024-10-25 09:57:04 +02:00
aac4254e2e OVPAY-1126 - Added deletes on order and order line. 2024-10-24 17:48:56 +02:00
2 changed files with 1010 additions and 98 deletions

View File

@ -671,6 +671,14 @@ paths:
schema:
$ref: "#/components/schemas/unavailable"
example: { "orderId": "afce35b2-1dff-4ace-98d0-4b9ac405c87d" }
delete:
summary: RFU. Delete an order.
description: Delete an order.
tags:
- Order
responses:
"200":
description: OK
/orders/{orderId}/statuses:
parameters:
- in: path
@ -1158,6 +1166,14 @@ paths:
schema:
$ref: "#/components/schemas/unavailable"
example: { "orderLineId": "ee82686a-a9f6-4888-b336-8e2aab6f4e13" }
delete:
summary: RFU. Delete an order line.
description: Delete an order line.
tags:
- Order Line
responses:
"200":
description: OK
/orderlines/{orderLineId}/accountingstatuses:
parameters:
- in: path
@ -1988,8 +2004,8 @@ paths:
required: true
description: The id of the customer on the order.
post:
summary: P3. Add one or more addresses to a customer of the order.
description: Add one or more addresses to a customer of the order.
summary: P3. Add an addresses to a customer of the order.
description: Add an addresses to a customer of the order.
tags:
- Customer
requestBody:
@ -1998,7 +2014,6 @@ paths:
schema:
$ref: "#/components/schemas/unavailable"
example:
[
{
"addressTypeId": 1,
"street": "Kon. Julianaplein",
@ -2007,8 +2022,7 @@ paths:
"postalCode": "2595 AA",
"city": "Den Haag",
"country": "NL",
},
]
}
responses:
"201":
description: Created

File diff suppressed because it is too large Load Diff