From 69febc4a76b1fad4b75a60df59540c9d7064f301 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Tue, 9 Apr 2024 08:56:00 +0200 Subject: [PATCH] Bug 36505: (follow-up) Consistent error codes in POST Signed-off-by: Brendan Lawlor Signed-off-by: Martin Renvoize --- Koha/REST/V1/Patrons.pm | 8 ++++---- api/v1/swagger/paths/patrons.yaml | 8 +++++++- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/Koha/REST/V1/Patrons.pm b/Koha/REST/V1/Patrons.pm index 81aca249fdc..ca620109a00 100644 --- a/Koha/REST/V1/Patrons.pm +++ b/Koha/REST/V1/Patrons.pm @@ -212,7 +212,7 @@ sub add { { return $c->render( status => 400, - openapi => { error => "$_" } + openapi => { error => "$_", error_code => 'missing_mandatory_attribute' } ); } elsif ( @@ -221,7 +221,7 @@ sub add { { return $c->render( status => 400, - openapi => { error => "$_" } + openapi => { error => "$_", error_code => 'invalid_attribute_type' } ); } elsif ( @@ -230,7 +230,7 @@ sub add { { return $c->render( status => 400, - openapi => { error => "$_" } + openapi => { error => "$_", error_code => 'non_repeatable_attribute' } ); } elsif ( @@ -239,7 +239,7 @@ sub add { { return $c->render( status => 400, - openapi => { error => "$_" } + openapi => { error => "$_", error_code => 'attribute_not_unique' } ); } } diff --git a/api/v1/swagger/paths/patrons.yaml b/api/v1/swagger/paths/patrons.yaml index 68649d10bd5..26ef12e0ce0 100644 --- a/api/v1/swagger/paths/patrons.yaml +++ b/api/v1/swagger/paths/patrons.yaml @@ -434,7 +434,13 @@ items: $ref: "../swagger.yaml#/definitions/patron" "400": - description: Bad parameter + description: | + Bad parameter. Possible `error_code` attribute values: + + * `invalid_attribute_type` + * `attribute_not_unique` + * `non_repeatable_attribute` + * `missing_mandatory_attribute` schema: $ref: "../swagger.yaml#/definitions/error" "401": -- 2.44.0