diff --git a/miw/src/main/java/org/eclipse/tractusx/managedidentitywallets/apidocs/IssuersCredentialControllerApiDocs.java b/miw/src/main/java/org/eclipse/tractusx/managedidentitywallets/apidocs/IssuersCredentialControllerApiDocs.java index 5ad56101..771ccda3 100644 --- a/miw/src/main/java/org/eclipse/tractusx/managedidentitywallets/apidocs/IssuersCredentialControllerApiDocs.java +++ b/miw/src/main/java/org/eclipse/tractusx/managedidentitywallets/apidocs/IssuersCredentialControllerApiDocs.java @@ -222,7 +222,6 @@ public class IssuersCredentialControllerApiDocs { @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) - @Tag(name = API_TAG_VERIFIABLE_CREDENTIAL_VALIDATION) @ApiResponses(value = { @ApiResponse(responseCode = "401", description = "The request could not be completed due to a failed authorization.", content = { @Content(examples = {}) }), diff --git a/revocation-service/src/main/java/org/eclipse/tractusx/managedidentitywallets/revocation/services/HttpClientService.java b/revocation-service/src/main/java/org/eclipse/tractusx/managedidentitywallets/revocation/services/HttpClientService.java index 333c8762..dd8f61b0 100644 --- a/revocation-service/src/main/java/org/eclipse/tractusx/managedidentitywallets/revocation/services/HttpClientService.java +++ b/revocation-service/src/main/java/org/eclipse/tractusx/managedidentitywallets/revocation/services/HttpClientService.java @@ -74,6 +74,7 @@ public VerifiableCredential signStatusListVC(VerifiableCredential vc, String tok UriComponentsBuilder.fromHttpUrl(miwUrl) .path("/api/credentials") .queryParam(StringPool.REVOCABLE, "false") + .queryParam(StringPool.AS_JWT, "false") .build() .toUriString(); diff --git a/revocation-service/src/main/java/org/eclipse/tractusx/managedidentitywallets/revocation/services/RevocationService.java b/revocation-service/src/main/java/org/eclipse/tractusx/managedidentitywallets/revocation/services/RevocationService.java index 4dff1776..a99adabe 100644 --- a/revocation-service/src/main/java/org/eclipse/tractusx/managedidentitywallets/revocation/services/RevocationService.java +++ b/revocation-service/src/main/java/org/eclipse/tractusx/managedidentitywallets/revocation/services/RevocationService.java @@ -182,7 +182,7 @@ public void revoke(CredentialStatusDto dto, String token) throws RevocationServi newSubject = StatusListCredentialSubject.builder() .id((String) subjectCredential.get(StatusListCredentialSubject.SUBJECT_ID)) - .type(StatusListCredentialSubject.TYPE_LIST) + .type(StatusListCredentialSubject.TYPE_CREDENTIAL) .statusPurpose( (String) subjectCredential.get(StatusListCredentialSubject.SUBJECT_STATUS_PURPOSE)) .encodedList(newEncodedList)