diff --git a/services/TS29222_CAPIF_API_Provider_Management_API/api_provider_management/controllers/individual_api_provider_enrolment_details_controller.py b/services/TS29222_CAPIF_API_Provider_Management_API/api_provider_management/controllers/individual_api_provider_enrolment_details_controller.py index cc23f5eda93b084d59dbdd9ab6cc7f37e1ce7731..bff5575d5f878dff3f1704c06c094cc81bdf50ad 100644 --- a/services/TS29222_CAPIF_API_Provider_Management_API/api_provider_management/controllers/individual_api_provider_enrolment_details_controller.py +++ b/services/TS29222_CAPIF_API_Provider_Management_API/api_provider_management/controllers/individual_api_provider_enrolment_details_controller.py @@ -29,6 +29,6 @@ def modify_ind_api_provider_enrolment(registration_id, body): # noqa: E501 if request.is_json: body = APIProviderEnrolmentDetailsPatch.from_dict(request.get_json()) # noqa: E501 - res = provider_management_ops.update_api_provider_enrolment_details(registration_id, body) + res = provider_management_ops.patch_api_provider_enrolment_details(registration_id, body) return res