Skip to content

Commit

Permalink
Fix #1096: Invalid GET request in TPP client for consent status
Browse files Browse the repository at this point in the history
  • Loading branch information
romanstrobl committed Apr 26, 2022
1 parent f2c0f6b commit a5075ea
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ public ObjectResponse<UserConsentDetailResponse> consentStatus(String userId, St
params.put("userId", Collections.singletonList(userId));
params.put("consentId", Collections.singletonList(consentId));
params.put("clientId", Collections.singletonList(clientId));
return getObjectImpl("/consent", params, UserConsentDetailResponse.class);
return getObjectImpl("/user/consent", params, UserConsentDetailResponse.class);
}

/**
Expand Down

0 comments on commit a5075ea

Please sign in to comment.