public ResponseEntity deleteAccountIdentifier()

in service/src/main/java/org/apache/fineract/cn/interoperation/service/rest/InteropRestController.java [178:185]


    public ResponseEntity<InteropIdentifierData> deleteAccountIdentifier(@PathVariable("idType") InteropIdentifierType idType,
                                                                         @PathVariable("idValue") String idValue,
                                                                         @PathVariable(value = "subIdOrType", required = false) String subIdOrType)
            throws Throwable {
        CommandCallback<InteropIdentifierData> result = commandGateway.process(new InteropIdentifierDeleteCommand(idType, idValue, subIdOrType), InteropIdentifierData.class);

        return ResponseEntity.ok(result.get());
    }