Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions meta/documents/changelog_en.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Release Notes for IO

## v5.0.81 (2026-xx-xx) <a href="https://github.com/plentymarkets/plugin-io/compare/5.0.80...5.0.81" target="_blank" rel="noopener"><b>Overview of all changes</b></a>

### Fixed

- Allow lower case keys to withdrawal cancellation input identifiers

## v5.0.80 (2026-05-27) <a href="https://github.com/plentymarkets/plugin-io/compare/5.0.79...5.0.80" target="_blank" rel="noopener"><b>Overview of all changes</b></a>

### Fixed
Expand Down
1 change: 1 addition & 0 deletions src/Api/Resources/CancellationResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ public function store(): Response
return $this->response->create(false, ResponseCode::BAD_REQUEST);
}

$formData = array_change_key_case($formData);
foreach (['email', 'name', 'order'] as $field) {
if(empty($formData[$field]['value'])) {
$errors[] = $field;
Expand Down
Loading