/
API Change Protocol - 20240320 - OpenerKey optional attribute
API Change Protocol - 20240320 - OpenerKey optional attribute
What we want to change:
Add ability to get unique object identification compatible with other parts of the system
Why we want to change:
To support get unique object identification
When we want to change:
Test environment: In sprint 2412 from 27. 5. 2024 to 6. 5. 2024
Production environemnt: In sprint 2412 from 27. 5. 2024 to 6. 5. 2024
Affected enpoints
POST /v2/reservation
PATCH /v2/reservation
GET /v2/reservation
GET /v2/reservations
Example of change:
When a caller wants to get unique object identification (focus on a new openerKey attribute on line 1 and filter for openerKey inside query string on the first line and in response body line 6).
Request:
POST /parcel-lockers/v2/reservation?fields%5Breservation%5D=openerKey
"data": {
"reservation": {
"id": "test.res.1",
"attributes": {
"expirationDate": "2023-03-17T15:05:06.687Z",
"packages": [
{
"depth": 3.5,
"height": 2.8,
"width": 4.2,
"barcode": "test.pkg.1"
}
],
"type": "NON_BINDING",
},
"relationships": {
"box": {
"id": 5,
}
}
}
}
}'
Response:
{
"data": {
"id": "test.res.1",
"attributes": {
"status": "RESERVED",
"openerKey": "PARC5431234",
"createdAt": "2023-03-15T15:06:25.0824894Z",
"expirationDate": "2023-03-17T15:05:06.687Z",
"startReservationDate": null,
"packages": [
{
"depth": 3.5,
"height": 2.8,
"width": 4.2,
"barcode": "test.pkg.1",
"packageState": "DISPATCHED"
}
],
"paymentData": null,
"pin": "844840",
"type": "NON_BINDING"
},
"relationships": {
"box": {
"id": 5,
"pid": null
}
}
},
"metadata": null,
"errors": null
}
And similar for other endpoints.
API specification diff:
, multiple selections available,
Related content
API Change Protocol - 20230315 - Blocked attribute
API Change Protocol - 20230315 - Blocked attribute
More like this
API Change Protocol - 20230626 - Barcode attribute
API Change Protocol - 20230626 - Barcode attribute
More like this
API Change protocol - 20231110 - Products input parameter
API Change protocol - 20231110 - Products input parameter
More like this
API Change Protocol - 20230320 - Patch box endpoint
API Change Protocol - 20230320 - Patch box endpoint
More like this
API Change Protocol - 20240719 - Package and product requirements
API Change Protocol - 20240719 - Package and product requirements
More like this
API Change protocol - 20231110 - NextReservationTimes input parameter
API Change protocol - 20231110 - NextReservationTimes input parameter
More like this